Skip to content

Commit

Permalink
build: Bump lint tools (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
tachikoma-li committed Feb 6, 2023
1 parent 37bb440 commit 92c60f6
Show file tree
Hide file tree
Showing 4 changed files with 539 additions and 431 deletions.
11 changes: 8 additions & 3 deletions .github/README.md
Expand Up @@ -133,13 +133,18 @@ These checks are run on all code merged to master, and may also be run locally f
directory:

```shell
pip install black pylint_runner isort mypy
pip install black isort mypy pylint
mypy
isort --check
isort --check .
black --check .
pylint_runner
pylint .
```

Note that you can speed up the execution of Pylint by running it in the parallel mode with the `-j`
option: `pylint -j 0 .`.
See the [official documentation](https://pylint.readthedocs.io/en/latest/user_guide/usage/run.html#parallel-execution)
for details.

Black and isort, in addition to checking code, can also automatically apply fixes. To fix all code
in the python-open-controls tree, run:

Expand Down

0 comments on commit 92c60f6

Please sign in to comment.