-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
14 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,23 +1,24 @@ | ||
[tool.pylint] | ||
max-line-length = 100 | ||
disable = [ | ||
"C0103", # Variable name doesn't conform to snake_case naming style (invalid-name) | ||
"C0114", # Missing module docstring (missing-module-docstring) | ||
"C0115", # Missing class docstring (missing-class-docstring) | ||
"C0116", # Missing function or method docstring (missing-function-docstring) | ||
"R0903", # Too few public methods (1/2) (too-few-public-methods) | ||
"R0913", # Too many arguments (6/5) (too-many-arguments) | ||
"W0105", # String statement has no effect (pointless-string-statement) | ||
"W0212", # Access to a protected member _ of a client class (protected-access) | ||
"E1101", # Instance of '...' has no '...' member (no-member) # pytorch issues | ||
"import-error", # vscode pythonpath issues | ||
"W0511", # TODO are allowed yet | ||
"W0221", # Arguments number differs from overridden method (arguments-differ) | ||
"R0914", # Too many local variables (7/5) (too-many-locals) | ||
"C0103", # Variable name doesn't conform to snake_case naming style (invalid-name) | ||
"C0114", # Missing module docstring (missing-module-docstring) | ||
"C0115", # Missing class docstring (missing-class-docstring) | ||
"C0116", # Missing function or method docstring (missing-function-docstring) | ||
"R0903", # Too few public methods (1/2) (too-few-public-methods) | ||
"R0913", # Too many arguments (6/5) (too-many-arguments) | ||
"W0105", # String statement has no effect (pointless-string-statement) | ||
"W0212", # Access to a protected member _ of a client class (protected-access) | ||
"E1101", # Instance of '...' has no '...' member (no-member) # pytorch issues | ||
"import-error", # vscode pythonpath issues | ||
"W0511", # TODO are allowed yet | ||
"W0221", # Arguments number differs from overridden method (arguments-differ) | ||
"R0914", # Too many local variables (7/5) (too-many-locals), | ||
"R0904", # Too many public methods (11/10) (too-many-public-methods) | ||
] | ||
|
||
[tool.pytest.ini_options] | ||
pythonpath = ["."] | ||
|
||
[tool.black] | ||
line-length = 100 | ||
line-length = 100 |