generated from rochacbruno/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
39 lines (36 loc) · 942 Bytes
/
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
[mypy]
ignore_missing_imports = True
[mypy-yaml.*]
ignore_missing_imports = True
[flake8]
ignore =
# Indentation is not a multiple of four
E111,
# Indentation is not a multiple of four (comment)
E114,
# continuation line under-indented for hanging indent
E121,
# Closing bracket does not match visual indentation
E124,
# continuation line over-indented for hanging indent
E126,
# Continuation line with same indent as next logical line
E125,
# Continuation line over-indented for visual indent
E127,
# Visually indented line with same indent as next logical line
E129,
# the backslash is redundant between bracket
E502,
# Line break before binary operator
W503,
# Line break after binary operator
W504,
# invalid escape sequence
W605,
# do not user bare except
E722
max-line-length = 300
[yapf]
based_on_style = google
indent_width = 4