-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update linting config files and project classifiers
- Loading branch information
1 parent
5685078
commit 510222b
Showing
8 changed files
with
23 additions
and
49 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
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,6 +1,6 @@ | ||
*.pyc | ||
*.egg-info | ||
.coverage | ||
.tox | ||
poetry.lock | ||
Pipfile.lock | ||
.venv | ||
*.egg-info | ||
*.lock | ||
*.pyc |
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,26 +1,17 @@ | ||
# This pylintrc exists for the purpose of enforcing a certain style guide across our Python code. | ||
|
||
[MASTER] | ||
init-hook="from pylint.config import find_pylintrc; import os, sys; sys.path.append(os.path.dirname(find_pylintrc()));" | ||
ignore=CVS,.git,.tox,.cache,.venv,frontend | ||
ignore = .git,.tox,.cache,.venv | ||
|
||
[MESSAGES CONTROL] | ||
disable=all | ||
enable= | ||
anomalous-backslash-in-string | ||
assert-false | ||
assert-outside-tests | ||
bare-except | ||
broad-except | ||
dangerous-default-value | ||
direct-logging | ||
import-pdb | ||
import-silk | ||
disable = all | ||
enable = | ||
broad-except, | ||
dangerous-default-value, | ||
relative-beyond-top-level, | ||
anomalous-backslash-in-string, | ||
logging-not-lazy | ||
relative-beyond-top-level | ||
unused-import | ||
|
||
[REPORTS] | ||
output-format=text | ||
reports=no | ||
score=no | ||
output-format = text | ||
reports = no | ||
score = no |
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