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 6512d9f commit cd581b6Copy full SHA for cd581b6
.github/workflows/pylint.yml
@@ -26,4 +26,4 @@ jobs:
26
env:
27
PYTHONIOENCODING: utf-8
28
run: |
29
- pylint --rcfile=.pylintrc $(git ls-files '*.py') -r n
+ pylint --exit-zero --rcfile=.pylintrc $(git ls-files '*.py')
.pylintrc
@@ -9,6 +9,10 @@ good-names=f, e
9
# Set the verbosity of the pylint output
10
output-format=colorized
11
12
+[CLASSES]
13
+# Disable too-few-public-methods check
14
+disable=too-few-public-methods
15
+
16
[MESSAGES CONTROL]
17
# Adjust severity of certain messages
-disable=R0902,W0719,R0902
18
+disable=R0902,W0719,R0902
0 commit comments