Move lint configuration into setup.cfg
This commit is contained in:
parent
447e61a814
commit
9bc321fe1b
2 changed files with 8 additions and 2 deletions
|
@ -6,7 +6,7 @@ echo "> Running isort"
|
|||
isort -rc -c actioner/
|
||||
|
||||
echo "> Running mypy"
|
||||
mypy --ignore-missing-imports actioner/
|
||||
mypy actioner/
|
||||
|
||||
echo "> Running flake8"
|
||||
flake8 --extend-ignore=E128,E501 actioner
|
||||
flake8 actioner
|
||||
|
|
|
@ -1,2 +1,8 @@
|
|||
[flake8]
|
||||
extend_ignore=E128,E501
|
||||
|
||||
[isort]
|
||||
not_skip = __init__.py
|
||||
|
||||
[mypy]
|
||||
ignore_missing_imports = true
|
||||
|
|
Reference in a new issue