-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
50 changed files
with
669 additions
and
285 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# https://editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
charset = utf-8 | ||
end_of_line = lf | ||
|
||
[*.py] | ||
max_line_length = 120 | ||
|
||
[LICENSE] | ||
insert_final_newline = false |
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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
[MASTER] | ||
# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the | ||
# number of processors available to use. | ||
jobs=0 | ||
|
||
|
||
[MESSAGES CONTROL] | ||
|
||
# Disable the message, report, category or checker with the given id(s). | ||
disable=all | ||
|
||
# Enable the message, report, category or checker with the given id(s). | ||
enable=c-extension-no-member, | ||
bad-indentation, | ||
bare-except, | ||
broad-except, | ||
dangerous-default-value, | ||
function-redefined, | ||
len-as-condition, | ||
line-too-long, | ||
misplaced-future, | ||
missing-final-newline, | ||
mixed-line-endings, | ||
multiple-imports, | ||
multiple-statements, | ||
singleton-comparison, | ||
trailing-comma-tuple, | ||
trailing-newlines, | ||
trailing-whitespace, | ||
unexpected-line-ending-format, | ||
unused-import, | ||
unused-variable, | ||
wildcard-import, | ||
wrong-import-order | ||
|
||
|
||
[FORMAT] | ||
|
||
# Expected format of line ending, e.g. empty (any line ending), LF or CRLF. | ||
expected-line-ending-format=LF | ||
|
||
# Regexp for a line that is allowed to be longer than the limit. | ||
ignore-long-lines=^\s*(# )?<?https?://\S+>?$ | ||
|
||
# Maximum number of characters on a single line. | ||
max-line-length=120 | ||
|
||
# Maximum number of lines in a module. | ||
max-module-lines=2000 | ||
|
||
|
||
[EXCEPTIONS] | ||
|
||
# Exceptions that will emit a warning when being caught. Defaults to | ||
# "BaseException, Exception". | ||
overgeneral-exceptions=BaseException, | ||
Exception |
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
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.