forked from project-march/ProjectMarch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (47 loc) · 1.38 KB
/
pyproject.toml
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
[tool.flakehell]
# specify any flake8 options.
# dont run plugins on these files and folders
exclude = [".git", "__init__.py", "build", "install", "log", "venv"]
# make output nice
format = "grouped"
# set max line length to 80 (becomes 88 with B950)
max_line_length = 80
# show line of source code in output
show_source = true
# list of plugins and rules for them
[tool.flakehell.plugins]
flake8-2020 = ["+*"]
flake8-aaa = ["+*"]
flake8-annotations = ["+*", "-ANN101", "-ANN102"]
flake8-annotations-complexity = ["+*"]
flake8-assertive = ["+*"]
flake8-bandit = ["+*"]
flake8-black = ["+*"]
flake8-blind-except = ["+*"]
flake8-bugbear = ["+*", "+B950"]
flake8-builtins = ["+*"]
flake8-cognitive-complexity = ["+*"]
flake8-commas = ["+*", "-C812", "-C815", "-C816"]
flake8-comprehensions = ["+*"]
flake8-deprecated = ["+*"]
flake8-docstrings = ["+*", "-D107"]
flake8-eradicate = ["+*"]
flake8-executable = ["+*"]
flake8-expression-complexity = ["+*"]
flake8-functions = ["+*"]
flake8-pie = ["+*"]
flake8-print = ["+*"]
flake8-printf-formatting = ["+*"]
flake8-rst-docstrings = ["+*"]
flake8-simplify = ["+*"]
flake8-string-format = ["+*"]
flake8-todos = ["+*"]
flake8-use-fstring = ["+*"]
mccabe = ["+*"]
pep8-naming = ["+*"]
pycodestyle = ["+*", "-E501", "-W503", "-E203"]
pyflakes = ["+*"]
pylint = ["+*"]
[tool.flakehell.exceptions."**/*_test.py"]
flake8-annotations = ["-ANN*"]
flake8-docstrings = ["-*"]