Skip to content

Commit 7b493f0

Browse files
committed
add setup.cfg
1 parent 6fceec4 commit 7b493f0

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

setup.cfg

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
[flake8]
2+
accept-encodings = utf-8
3+
max-complexity = 6
4+
statistics = False
5+
max-line-length = 80
6+
enable-extensions = G
7+
isort-show-traceback = True
8+
9+
exclude = .git,__pycache__,.venv,dist,build
10+
11+
ignore =
12+
# line break occurred before a binary operator
13+
W503
14+
#lenght string too long
15+
E501
16+
17+
per-file-ignores =
18+
# init modules can contain the local imports, logic, unused imports
19+
__init__.py: F401
20+
21+
[isort]
22+
multi_line_output = 3
23+
include_trailing_comma = true
24+
default_section = FIRSTPARTY
25+
line_length = 79

0 commit comments

Comments
 (0)