Commit 06492f71 authored by sim's avatar sim

[CONF] Tweak pylint to have more readable results

parent e8b7dc7d
...@@ -11,10 +11,10 @@ init-hook="" ...@@ -11,10 +11,10 @@ init-hook=""
# Add files or directories to the blacklist. They should be base names, not # Add files or directories to the blacklist. They should be base names, not
# paths. # paths.
ignore= ignore=util,constants.py
# Pickle collected data for later comparisons. # Pickle collected data for later comparisons.
persistent=no persistent=yes
# List of plugins (as comma separated values of python modules names) to load, # List of plugins (as comma separated values of python modules names) to load,
# usually to register additional checkers. # usually to register additional checkers.
...@@ -210,7 +210,6 @@ enable=import-error, ...@@ -210,7 +210,6 @@ enable=import-error,
not-async-context-manager, not-async-context-manager,
yield-inside-async-function, yield-inside-async-function,
undefined-variable, undefined-variable,
unused-argument,
no-name-in-module, no-name-in-module,
parameter-unpacking, parameter-unpacking,
print-statement, print-statement,
...@@ -218,7 +217,8 @@ enable=import-error, ...@@ -218,7 +217,8 @@ enable=import-error,
map-builtin-not-iterating, map-builtin-not-iterating,
range-builtin-not-iterating, range-builtin-not-iterating,
zip-builtin-not-iterating, zip-builtin-not-iterating,
unused-variable unused-variable,
fixme
# Needs investigation: # Needs investigation:
...@@ -390,7 +390,7 @@ spelling-store-unknown-words=no ...@@ -390,7 +390,7 @@ spelling-store-unknown-words=no
[MISCELLANEOUS] [MISCELLANEOUS]
# List of note tags to take in consideration, separated by a comma. # List of note tags to take in consideration, separated by a comma.
notes=FIXME,XXX,TODO notes=FIXME,TODO
[BASIC] [BASIC]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment