Unverified Commit 1892bc29 authored by SparkSnail's avatar SparkSnail Committed by GitHub
Browse files

Merge pull request #209 from microsoft/master

augment pylintrc (#1643)
parents 2f5272c7 a768117f
...@@ -14,8 +14,35 @@ max-attributes=15 ...@@ -14,8 +14,35 @@ max-attributes=15
const-naming-style=any const-naming-style=any
disable=duplicate-code, # based on pylint 2.1.1
super-init-not-called disable=W,C,R,I,no-member
# will be enforced on CI Pipeline
enable= unused-wildcard-import,
bad-whitespace,
unused-import,
bad-continuation,
wrong-import-order,
trailing-whitespace,
logging-not-lazy,
line-too-long,
unused-variable,
wildcard-import,
useless-super-delegation,
len-as-condition,
logging-format-interpolation,
redefined-builtin,
deprecated-method
# will change to `enable` one day
# disable= missing-docstring
# will not be enforced on CI but highly recommend contributor fixing it
# enable=no-member,
# too-many-branches,
# protected-access
ignore-patterns=test.py
# List of members which are set dynamically and missed by pylint inference # List of members which are set dynamically and missed by pylint inference
generated-members=numpy.*,torch.* generated-members=numpy.*,torch.*
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