Skip to content

Commit 3dbc92e

Browse files
committed
simplify linter config
1 parent 4af4708 commit 3dbc92e

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

.pylintrc

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,18 @@ disable=print-statement,
139139
deprecated-sys-function,
140140
exception-escape,
141141
comprehension-escape,
142-
abstract-class-instantiated # needed when instantiating can.Bus
142+
abstract-class-instantiated, # needed when instantiating can.Bus
143+
wrong-import-position,
144+
wrong-import-order,
145+
missing-module-docstring,
146+
missing-class-docstring,
147+
missing-function-docstring,
148+
too-many-arguments,
149+
invalid-name,
150+
abstract-method,
151+
too-few-public-methods,
152+
no-else-raise
153+
143154

144155
# Enable the message, report, category or checker with the given id(s). You can
145156
# either give multiple identifier separated by comma (,) or put this option

0 commit comments

Comments
 (0)