forked from humanwave-nl/practice-garage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
39 lines (35 loc) · 789 Bytes
/
setup.cfg
File metadata and controls
39 lines (35 loc) · 789 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
32
33
34
35
36
37
38
39
[flake8]
format = wemake
show-source = true
enable-extensions = "G"
radon-show-closures = true
radon-no-assert = true
max-line-length = 120
accept-encodings = "utf-8"
max-complexity = 6
radon-max-cc = 10
ignore = D100, D104, D401, E0001, E0401, W504, WPS608, WPS121, RST, DAR003
exclude =
appengine_config,
*/shared/,
*/static/,
guestbook/,
web/,
[isort]
multi_line_output = 3
include_trailing_comma = true
line_length = 120
[mypy]
allow_redefinition = false
check_untyped_defs = true
ignore_errors = false
ignore_missing_imports = true
implicit_reexport = false
strict_optional = true
strict_equality = true
no_implicit_optional = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unreachable = true
warn_no_return = true