-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
8 changed files
with
127 additions
and
129 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 @@ | ||
[MASTER] | ||
# Ignore certain files or directories during analysis | ||
ignore-paths=tests/,docs/,example/ | ||
|
||
[REPORTS] | ||
# Set the output format for `pylint` messages (text, colorized, json, etc.) | ||
output-format=text | ||
|
||
# Ignore certain files or directories during analysis | ||
ignore-patterns=tests/, docs/ | ||
|
||
[MESSAGES CONTROL] | ||
# Specify the maximum allowed line length | ||
max-line-length=120 | ||
|
||
# Disable some pylint messages that may be too strict or not relevant for your project | ||
disable= | ||
C0103, # Naming convention violation | ||
# C0114, # Missing module, function, class docstring | ||
C0114, # Missing module docstring | ||
C0116, # Missing function docstring | ||
R0903, # Too few public methods | ||
R0913, # Too many arguments | ||
R0914, # Too many local variables | ||
# R0903, # Too few public methods | ||
|
||
# Include additional pylint messages or message categories | ||
enable= | ||
C0114, # Missing module, function, class docstring | ||
R0903, # Too few public methods | ||
#enable= | ||
# C0114, # Missing module, function, class docstring | ||
# R0903, # Too few public methods |
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
Oops, something went wrong.