Skip to content

Commit 4c238f9

Browse files
linter conf
1 parent a7020ab commit 4c238f9

File tree

1 file changed

+27
-2
lines changed

1 file changed

+27
-2
lines changed

setup.cfg

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,34 @@ ignore = E226, E302, E303, E305, E402, ANN101
8383
# module-naming-style=PascalCase
8484
max-line-length = 120
8585
disable =
86+
disallowed-name,
87+
fixme,
88+
import-outside-toplevel,
89+
invalid-name,
8690
missing-class-docstring,
8791
missing-function-docstring,
8892
missing-module-docstring,
89-
wrong-import-position,
93+
no-else-raise,
94+
no-else-return,
95+
non-ascii-module-import,
96+
protected-access,
97+
too-many-arguments,
98+
too-many-instance-attributes,
99+
too-many-lines,
100+
too-many-public-methods,
101+
too-many-return-statements,
102+
unused-argument,
90103
wrong-import-order,
91-
invalid-name
104+
wrong-import-position,
105+
no-member
106+
107+
# no-name-in-module
108+
# unused-variable
109+
# use-dict-literal
110+
111+
[pycodestyle]
112+
max-line-length = 120
113+
ignore =
114+
E265,
115+
E305,
116+
E402

0 commit comments

Comments
 (0)