generated from victoraguilarc/django-wise
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
118 lines (101 loc) · 2.53 KB
/
setup.cfg
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# All configuration for plugins and other utils is defined here.
# Read more about `setup.cfg`:
# https://docs.python.org/3/distutils/configfile.html
[flake8]
htmldir=reports/flake8
# Base flake8 configuration:
# https://flake8.pycqa.org/en/latest/user/configuration.html
format = wemake
show-source = True
statistics = False
doctests = True
enable-extensions = G
inline-quotes = single
max-string-usages = 5
# Plugins:
accept-encodings = utf-8
max-complexity = 6
max-line-length = 120
radon-max-cc = 10
radon-show-closures = True
radon-no-assert = True
max-try-body-length = 7
max-imports = 20
max-methods = 10
max-module-expressions = 20
max-function-expressions = 10
max-local-variables = 10
# Disable some pydocstyle checks:
# Exclude some pydoctest checks globally:
ignore = D100, D104, D106, D401, W504, X100, RST303, RST304, DAR103, DAR203, WPS115, WPS317, WPS306, WPS202, WPS347, WS502, WPS110, WPS342, DJ01, WPS226
# Excluding some directories:
exclude =
.git
__pycache__
.venv
.eggs
*.egg
.tox
.git
*/migrations/*
*/static/*
docs
node_modules
*/tests/*
__init__.py
; tests are temporally included but it must delete it
# Ignoring some errors in some files:
per-file-ignores =
# Enable `assert` keyword and magic numbers for tests:
tests/*.py: S101, WPS226, WPS432
*serializers/*:D102,D107,WPS226,WPS204
*models/*:D102,D105,WPS432,WPS110,DJ08
*/models.py:D102,D105,WPS432,WPS110,DJ08
*api/*:WPS503
*/urls.py:WPS226
*/codes*:WPS226
config/*:WPS407,WPS226,WPS432
*/response_codes.py:WPS407
# Allow `print` function for hooks:
hooks/*.py: WPS226, T001
[pycodestyle]
max-line-length = 120
exclude =
.git
__pycache__
.venv
.eggs
*.egg
.tox
.git
*/migrations/*
*/static/*
docs
node_modules
*/tests/*
__init__.py
; tests are temporally included but it must delete it
[isort]
# isort configuration:
# https://github.com/timothycrosley/isort/wiki/isort-Settings
include_trailing_comma = true
known_django=django
known_rest_framework=rest_framework
sections=FUTURE,STDLIB,DJANGO,THIRDPARTY,REST_FRAMEWORK,FIRSTPARTY,LOCALFOLDER
# See https://github.com/timothycrosley/isort#multi-line-output-modes
multi_line_output = 5
# Should be: 120 - 1
line_length = 119
[darglint]
# darglint configuration:
# https://github.com/terrencepreilly/darglint
strictness = long
docstring_style=sphinx
[tool:pytest]
# Directories that are not visited by pytest collector:
norecursedirs = apps hooks *.egg .eggs dist build docs .tox .git __pycache__
# Extra options:
addopts =
--strict
--tb=short
--doctest-modules