diff options
author | Matt Singleton <matt@xcolour.net> | 2020-09-07 14:31:13 -0500 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2020-09-07 14:31:13 -0500 |
commit | 01b4fd03f3c2c09eb0337aeade83daf93856c408 (patch) | |
tree | bcd6b735be8e204ce232d4d53feb97abb6e5f877 /.pylintrc | |
parent | 8e209427f5f08bb2ff57d657fb00f88117d4396b (diff) |
use stdlib url parsing in gemini module
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 |