summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2020-12-21 23:03:35 -0500
committerOwen Jacobson <owen@grimoire.ca>2020-12-21 23:09:02 -0500
commit7c5bef76c50121e2171e0e67feff2fb46b2a3a56 (patch)
treea66cd5d78c26c07a55784d74a12b459011121817 /.pylintrc
Created a helper for loading environment entries from a directory.
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc16
1 files changed, 16 insertions, 0 deletions
diff --git a/.pylintrc b/.pylintrc
new file mode 100644
index 0000000..c590644
--- /dev/null
+++ b/.pylintrc
@@ -0,0 +1,16 @@
+[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,