Commit e6e3ea2c authored by sim's avatar sim

[CONF] Tweak pylint to have more readable results

parent 8d4c2fa2
......@@ -11,10 +11,10 @@ init-hook=""
# Add files or directories to the blacklist. They should be base names, not
# paths.
ignore=
ignore=util,constants.py
# Pickle collected data for later comparisons.
persistent=no
persistent=yes
# List of plugins (as comma separated values of python modules names) to load,
# usually to register additional checkers.
......@@ -210,7 +210,6 @@ enable=import-error,
not-async-context-manager,
yield-inside-async-function,
undefined-variable,
unused-argument,
no-name-in-module,
parameter-unpacking,
print-statement,
......@@ -218,7 +217,8 @@ enable=import-error,
map-builtin-not-iterating,
range-builtin-not-iterating,
zip-builtin-not-iterating,
unused-variable
unused-variable,
fixme
# Needs investigation:
......@@ -390,7 +390,7 @@ spelling-store-unknown-words=no
[MISCELLANEOUS]
# List of note tags to take in consideration, separated by a comma.
notes=FIXME,XXX,TODO
notes=FIXME,TODO
[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