added unnecessary-dunder-call to pylintrc files; disabled for certain lines (#655)

in run_tests.py, exception thrown by 'git remote add origin' when the remote already exists will not exit

Signed-off-by: Mark Cohen <markcoh@amazon.com>
This commit is contained in:
Mark Cohen
2024-01-22 09:12:57 -05:00
committed by GitHub
parent 7c66e8cf3d
commit 6e58837993
8 changed files with 38 additions and 27 deletions
+8 -2
View File
@@ -1,7 +1,13 @@
[MESSAGES CONTROL]
disable=all
enable=line-too-long,invalid-name,pointless-statement,unspecified-encoding,
missing-function-docstring,missing-param-doc,differing-param-doc
enable=line-too-long,
invalid-name,
pointless-statement,
unspecified-encoding,
missing-function-docstring,
missing-param-doc,
differing-param-doc,
unnecessary-dunder-call
max-line-length=240
good-names-rgxs=^[_a-z][_a-z0-9]?$