1
1
[flake8]
2
2
select = C,E,F,W,B,B950
3
+ # Ignore specific warnings and errors according to CEP-8 style
3
4
extend-ignore =
4
- W191, # Indentation contains tabs - CEP-8
5
- W391, # Blank line at end of file - CEP-8
6
- E117, # Over-indented - CEP-8
7
- D208, # Docstring is over-indented - CEP-8
5
+ W191, # Indentation contains tabs
6
+ W391, # Blank line at end of file
7
+ E117, # Over-indented
8
+ D208, # Docstring is over-indented
8
9
D203, # 1 blank line required before class docstring - CEP-7
9
10
D212, # Multi-line docstring summary should start at the first line - CEP-7
10
- docstring-convention = google
11
- docstring_style = google
12
11
# Ignore long lines as specified in CEP-8
13
12
max-line-length = 100
14
- exclude =
13
+ extend- exclude =
15
14
# No need to traverse our git directory
16
15
.git,
17
16
# There's no value in checking cache directories
@@ -20,6 +19,16 @@ exclude =
20
19
docs,
21
20
# There's no value in checking tox directories
22
21
.tox,
23
- # This contains our built documentation
22
+ # This contains our built stuff
24
23
build
24
+ # Nothing to find in node_modules, ignore them
25
+ node_modules,
26
+ # This contains our built package for PyPi
27
+ dist,
28
+ # There's no value in checking git directories
29
+ .git,
30
+ # There's no value in checking virtual directories
31
+ venv,
32
+ # There's no value in checking xcode directories
33
+ *.xc**
25
34
max-complexity = 10
0 commit comments