diff options
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 |