-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 <[email protected]>
- Loading branch information
Showing
8 changed files
with
38 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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]?$ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
[MESSAGES CONTROL] | ||
disable=all | ||
enable=line-too-long,invalid-name,pointless-statement,unspecified-encoding | ||
enable=line-too-long, | ||
invalid-name, | ||
pointless-statement, | ||
unspecified-encoding, | ||
unnecessary-dunder-call | ||
max-line-length=240 | ||
good-names-rgxs=^[_a-z][_a-z0-9]?$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters