summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorMatt Singleton <matt@xcolour.net>2020-09-07 14:31:13 -0500
committerMatt Singleton <matt@xcolour.net>2020-09-07 14:31:13 -0500
commit01b4fd03f3c2c09eb0337aeade83daf93856c408 (patch)
treebcd6b735be8e204ce232d4d53feb97abb6e5f877 /.pylintrc
parent8e209427f5f08bb2ff57d657fb00f88117d4396b (diff)
use stdlib url parsing in gemini module
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc7
1 files changed, 5 insertions, 2 deletions
diff --git a/.pylintrc b/.pylintrc
index 0ace322..5342c9f 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -139,7 +139,9 @@ disable=print-statement,
deprecated-sys-function,
exception-escape,
comprehension-escape,
- c-extension-no-member
+ c-extension-no-member,
+ missing-module-docstring,
+ missing-function-docstring
# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
@@ -423,7 +425,8 @@ good-names=i,
k,
ex,
Run,
- _
+ _,
+ fp
# Good variable names regexes, separated by a comma. If names match any regex,
# they will always be accepted