pylint: Ignore invalid name and global statement lint (C0103 & W0603)
This commit is contained in:
parent
4d19532127
commit
6349597241
1 changed files with 3 additions and 1 deletions
|
@ -88,7 +88,9 @@ disable=raw-checker-failed,
|
|||
use-symbolic-message-instead,
|
||||
missing-class-docstring,
|
||||
missing-function-docstring,
|
||||
missing-module-docstring
|
||||
missing-module-docstring,
|
||||
invalid-name,
|
||||
global-statement
|
||||
|
||||
# Enable the message, report, category or checker with the given id(s). You can
|
||||
# either give multiple identifier separated by comma (,) or put this option
|
||||
|
|
Loading…
Reference in a new issue