Skip to content

Commit 92c60f6

Browse files
authored
build: Bump lint tools (#257)
1 parent 37bb440 commit 92c60f6

File tree

4 files changed

+539
-431
lines changed

4 files changed

+539
-431
lines changed

.github/README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,18 @@ These checks are run on all code merged to master, and may also be run locally f
133133
directory:
134134

135135
```shell
136-
pip install black pylint_runner isort mypy
136+
pip install black isort mypy pylint
137137
mypy
138-
isort --check
138+
isort --check .
139139
black --check .
140-
pylint_runner
140+
pylint .
141141
```
142142

143+
Note that you can speed up the execution of Pylint by running it in the parallel mode with the `-j`
144+
option: `pylint -j 0 .`.
145+
See the [official documentation](https://pylint.readthedocs.io/en/latest/user_guide/usage/run.html#parallel-execution)
146+
for details.
147+
143148
Black and isort, in addition to checking code, can also automatically apply fixes. To fix all code
144149
in the python-open-controls tree, run:
145150

0 commit comments

Comments
 (0)