diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000000000000000000000000000000000000..e39dc751dd4f45f8c586391ad57619fbae2fcbab --- /dev/null +++ b/.pylintrc @@ -0,0 +1,36 @@ +[MASTER] +# jobs=0 means 'use all CPUs' +jobs=0 + +[MESSAGES CONTROL] +disable = + missing-docstring, + line-too-long, + invalid-name, + no-value-for-parameter, + no-member, + unused-argument, + broad-except, + relative-import, + wrong-import-position, + bare-except, + locally-disabled, + protected-access, + abstract-method, + no-self-use, + fixme, + too-few-public-methods, + ungrouped-imports, + bad-continuation, + redefined-outer-name, + too-many-ancestors, + attribute-defined-outside-init, + too-many-arguments, + +[REPORTS] +output-format=colorized + +[FORMAT] +logging-modules= + logging, + structlog,