-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
31 lines (27 loc) · 753 Bytes
/
setup.cfg
File metadata and controls
31 lines (27 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[flake8]
ignore = F841,W504
max-line-length = 120
inline-quotes = double
exclude = .tox,build,temp/**,.venv,.cache,.github,venv,migrations
per-file-ignores = tests/**.py: S101, D103, ANN201
spellcheck-targets = comments
sql-excepted-names = EXISTS
[isort]
line_length = 120
skip = .tox,build,venv
known_first_party = tests
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
combine_as_imports = True
[black]
line-length = 120
[pylint.MASTER]
disable = R0903, C0103, W1203, R0401, E0611
[tool:pytest]
asyncio_mode = auto
log_cli = true
log_cli_level = INFO
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
filterwarnings = ignore::DeprecationWarning