Skip to content

Commit 42ff73c

Browse files
[FIX] resolved a config regression (- WIP PR #82 -)
1 parent b52b272 commit 42ff73c

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.flake8.ini

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[flake8]
22
select = C,E,F,W,B,B950
33
# Ignore specific warnings and errors according to CEP-8 style
4-
extend-ignore =
5-
W191, # Indentation contains tabs
6-
W391, # Blank line at end of file
7-
E117, # Over-indented
8-
D208, # Docstring is over-indented
9-
D203, # 1 blank line required before class docstring - CEP-7
10-
D212, # Multi-line docstring summary should start at the first line - CEP-7
4+
extend-ignore = E117,D203,D208,D212,W191,W391
5+
# CEP-8 Custom Exceptions:
6+
# W191, # Indentation contains tabs
7+
# W391, # Blank line at end of file
8+
# E117, # Over-indented
9+
# D208, # Docstring is over-indented
10+
# D203, # 1 blank line required before class docstring - CEP-7
11+
# D212, # Multi-line docstring summary should start at the first line - CEP-7
1112
# Ignore long lines as specified in CEP-8
1213
max-line-length = 100
1314
extend-exclude =

0 commit comments

Comments
 (0)