We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60db830 commit 5b68375Copy full SHA for 5b68375
.travis.yml
@@ -83,12 +83,12 @@ jobs:
83
- pylint --rcfile=.pylintrc-wip can/**.py
84
# check setup.py
85
- pylint --rcfile=.pylintrc *.py
86
- # check doc/conf.py and possible other scripts in there
87
- - pylint --rcfile=.pylintrc doc/**.py
+ # check doc/conf.py
+ - pylint --rcfile=.pylintrc doc.conf
88
# check the scripts folder
89
- - pylint --rcfile=.pylintrc scripts/**.py
+ - find scripts -type f -name "*.py" | xargs pylint --rcfile=.pylintrc
90
# check the examples
91
- - pylint --rcfile=.pylintrc-wip examples/**.py
+ - find examples -type f -name "*.py" | xargs pylint --rcfile=.pylintrc-wip
92
# -------------
93
# mypy checking:
94
- mypy
0 commit comments