diff options
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..f9b1110 --- /dev/null +++ b/.pylintrc @@ -0,0 +1,9 @@ +[MASTER] +disable= + C0103, # invalid-name + C0114, # missing-module-docstring + C0115, # missing-class-docstring + C0116, # missing-function-docstring + C0209, # consider-using-f-string + C0415, # import-outside-toplevel + R0801, # duplicate-code |