mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Move ignored warnings into setup.cfg
This commit is contained in:
parent
0087f191dc
commit
665b0cefaf
2 changed files with 5 additions and 2 deletions
3
Makefile
3
Makefile
|
|
@ -8,8 +8,7 @@ install-style:
|
||||||
pip install flake8 flake8-import-order
|
pip install flake8 flake8-import-order
|
||||||
|
|
||||||
style:
|
style:
|
||||||
flake8 \
|
flake8
|
||||||
--ignore=W503 # Line break before operator
|
|
||||||
! grep -ri syncroniz */*
|
! grep -ri syncroniz */*
|
||||||
|
|
||||||
install-docs:
|
install-docs:
|
||||||
|
|
|
||||||
|
|
@ -3,3 +3,7 @@ universal = 1
|
||||||
|
|
||||||
[pytest]
|
[pytest]
|
||||||
norecursedirs = tests/storage/dav/servers/*
|
norecursedirs = tests/storage/dav/servers/*
|
||||||
|
|
||||||
|
[flake8]
|
||||||
|
# W503: Line break before operator
|
||||||
|
ignore = W503
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue