Skip to content

Commit

Permalink
add pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
Малахов Алексей Павлович committed Aug 26, 2024
1 parent c140cbe commit a227e3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ tests: tests-unit tests-integration tests-cli
[ -n $$CI ] && coverage xml -i || true # always success
coverage report -i

lint: black flake mypy
lint: black flake pylint mypy

black:
black --target-version py310 --check --skip-string-normalization --line-length $(MAX_LINE_LENGTH) $(CODE)
Expand All @@ -27,7 +27,7 @@ flake:
flake8 --max-line-length 119 --jobs $(JOBS) --statistics $${CI:+--format=gl-codeclimate --output=codeclimate-flake8.json} $(CODE)

pylint:
pylint --jobs $(JOBS) --rcfile=setup.cfg $${CI:+--output-format=json --output=codeclimate-pylint.json} $(CODE)
pylint --rcfile=setup.cfg $${CI:+--output-format=json --output=codeclimate-pylint.json} $(CODE)

mypy:
mypy --config-file mypy.ini $(CODE) --show-traceback
Expand Down

0 comments on commit a227e3c

Please sign in to comment.