archive
/
actioner
Archived
1
Fork 0

Move lint configuration into setup.cfg

This commit is contained in:
Jake Howard 2019-02-14 20:47:34 +00:00
parent 447e61a814
commit 9bc321fe1b
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 8 additions and 2 deletions

View File

@ -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

View File

@ -1,2 +1,8 @@
[flake8]
extend_ignore=E128,E501
[isort]
not_skip = __init__.py
[mypy]
ignore_missing_imports = true