We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d94948b commit a2f558bCopy full SHA for a2f558b
.pylintrc
@@ -0,0 +1,18 @@
1
+[MAIN]
2
+ignore=venv
3
+
4
+[MESSAGES CONTROL]
5
+disable=
6
+ C0114, # missing-module-docstring
7
+ C0115, # missing-class-docstring
8
+ C0116, # missing-function-docstring
9
+ C0301, # line-too-long
10
+ R0903, # too-few-public-methods
11
+ R0913, # too-many-arguments
12
+ R0917, # too-many-positional-arguments
13
+ R0801, # duplicate-code
14
+ W1203, # logging-fstring-interpolation
15
+ W0511, # fixme
16
17
+[REPORTS]
18
+reports=no
0 commit comments