Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,22 @@ jobs=4
[MESSAGES CONTROL]

# Errors and warnings with some filtered:
# W0012(bad-option-value)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

W0012 was renamed

# W0212(protected-access)
# W0221(arguments-differ)
# W0222(signature-differs)
# W0223(abstract-method)
# W0231(super-init-not-called)
# W0311(bad-indentation)
# W0511(fixme)
# W0602(global-variable-not-assigned)
# W0603(global-statement)
# W0611(unused-import)
# W0613(unused-argument)
# W0621(redefined-outer-name)
# W0622(redefined-builtin)
# W0631(undefined-loop-variable)
# W0703(broad-except)
# W1401(anomalous-backslash-in-string)
# W1514(unspecified-encoding)
# E0012(bad-option-value)

disable=C, F, I, R, W0212, W0221, W0222, W0223, W0231, W0311, W0511, W0602, W0603, W0611, W0613, W0621, W0622, W0631, W0703, W1401, W1514, E0012
disable=C, F, I, R, W0012, W0212, W0221, W0223, W0231, W0511, W0603, W0611, W0613, W0621, W0622, W0631, W0703, W1514


[REPORTS]
Expand Down