mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 13:47:37 +03:00
flake8/mypy: Ignore build folder
This commit is contained in:
parent
9bed0af669
commit
865e0dd629
1 changed files with 2 additions and 2 deletions
|
@ -30,12 +30,12 @@ known_third_party = defusedxml,passlib,pkg_resources,pytest,vobject
|
||||||
# Only enable default tests (https://github.com/PyCQA/flake8/issues/790#issuecomment-812823398)
|
# Only enable default tests (https://github.com/PyCQA/flake8/issues/790#issuecomment-812823398)
|
||||||
select = E,F,W,C90,DOES-NOT-EXIST
|
select = E,F,W,C90,DOES-NOT-EXIST
|
||||||
ignore = E121,E123,E126,E226,E24,E704,W503,W504,DOES-NOT-EXIST
|
ignore = E121,E123,E126,E226,E24,E704,W503,W504,DOES-NOT-EXIST
|
||||||
extend-exclude = ./build/
|
extend-exclude = build
|
||||||
|
|
||||||
[mypy]
|
[mypy]
|
||||||
ignore_missing_imports = True
|
ignore_missing_imports = True
|
||||||
show_error_codes = True
|
show_error_codes = True
|
||||||
exclude = ^build/
|
exclude = (^|/)build($|/)
|
||||||
|
|
||||||
[coverage:run]
|
[coverage:run]
|
||||||
branch = True
|
branch = True
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue