summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc16
1 files changed, 0 insertions, 16 deletions
diff --git a/.pylintrc b/.pylintrc
deleted file mode 100644
index c590644..0000000
--- a/.pylintrc
+++ /dev/null
@@ -1,16 +0,0 @@
-[MASTER]
-# No lint failures allowed.
-fail-under=10.0
-
-# Prevent litter in ~/.pylint.d
-persistent=no
-
-[MESSAGES CONTROL]
-disable=
- # None of the modules in this are designed for import. This is a tool,
- # with no library attached.
- missing-module-docstring,
- # I fundamentally disagree with pylint's assertion that stdlib imports go
- # before library imports. All libraries are created more or less equal;
- # the stdlib merely happens to come with the language.
- wrong-import-order,