Skip to content

Commit d0ab7ec

Browse files
Added .pylintrc file and CHANGELOG to readme
1 parent c17f6ff commit d0ab7ec

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

.pylintrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# lint Python modules using external checkers.
2+
[MASTER]
3+
ignore=SVN
4+
disable=R0903,R0912,R0913,R0914,R0915,W0141,C0111,C0103,W0603,W0703,R0911,C0301,C0302,R0902,R0904,W0142,W0212,E1101,E1103,R0201,W0201,W0122,W0232,RP0001,RP0003,RP0101,RP0002,RP0401,RP0701,RP0801,F0401,E0611,R0801,I0011
5+
disable=F0401,E0611,E1004,C0111,I0011,I0012,W0704,W0142,W0212,W0232,W0613,W0702,R0201,W0614,R0914,R0912,R0915,R0913,R0904,R0801,C0301,C0411,R0204

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ To get your service credentials, follow these steps:
4040
Tested 👌 (lightly) on: Python from 2.7 to 3.5-dev (development branch).
4141
Python 2.6 is partially supported but generates InsecurePlatformWarnings (and other warnings), which can be ignored.
4242

43+
## CHANGELOG
44+
See [CHANGELOG][CHANGELOG.md].
45+
4346
## Known Issues
4447
There is a known incompatibility with this module with Python versions 3.x with Korean systems.
4548

@@ -62,4 +65,6 @@ This library is licensed under the [Apache 2.0 license][license].
6265
[requests]: http://docs.python-requests.org/en/latest/
6366
[examples]: https://github.com/watson-developer-cloud/python-sdk/tree/master/examples
6467
[CONTRIBUTING]: https://github.com/watson-developer-cloud/python-sdk/blob/master/CONTRIBUTING.md
68+
[CHANGELOG.md]: https://github.com/watson-developer-cloud/python-sdk/blob/master/CHANGELOG.md
69+
6570
[license]: http://www.apache.org/licenses/LICENSE-2.0

pylint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
PYTHON_VERSION=$(python -c 'import sys; print(".".join(map(str, sys.version_info[:2])))')
55
echo "Python version: $PYTHON_VERSION"
66
if [ $PYTHON_VERSION = '2.7' ]; then
7-
pylint watson_developer_cloud --disable=F0401,E0611,E1004,C0111,I0011,I0012,W0704,W0142,W0212,W0232,W0613,W0702,R0201,W0614,R0914,R0912,R0915,R0913,R0904,R0801,C0301,C0411,R0204
7+
pylint watson_developer_cloud
88
fi

0 commit comments

Comments
 (0)