forked from ansible/eda-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
21 lines (21 loc) · 794 Bytes
/
Copy pathsetup.cfg
File metadata and controls
21 lines (21 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[flake8]
# Flake8 default ignore list:
# ['W504', 'B904', 'B901', 'E24', 'W503', 'B950', 'E123', 'E704', 'B903', 'E121', 'B902', 'E226', 'E126']
extend-ignore =
# Whitespace before ':' (false positive in slices, handled by black.
# see: https://github.com/psf/black/issues/315)
E203
# Missing docstrings errors
D1
per-file-ignores =
# Ignore "F401 'NAME' imported but unused" in __init__.py used for names re-export from package.
**/__init__.py:F401
# Ignore "E501: Lint too long" for migrations, because migrations are generated automatically
# and the nesting level is high.
src/aap_eda/core/migrations/*:E501
# Ignore docstring errors in tests.
tests/*:D
classmethod-decorators =
classmethod
validator
exclude = .venv,venv,env,.env