This repository has been archived by the owner on Jun 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #337 from RaenonX/dev
- Loading branch information
Showing
338 changed files
with
5,433 additions
and
2,403 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,2 @@ | ||
pip install -r --upgrade requirements.txt | ||
pip install -r --upgrade requirements-env.txt |
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,15 +1,21 @@ | ||
[flake8] | ||
count = True | ||
|
||
ignore = | ||
# module imported but not used (actually using but somehow not detected) | ||
F401 | ||
# As of PEP 8, W503 is yielded in old-style | ||
W503 | ||
|
||
exclude = | ||
tests_old/ | ||
archive/ | ||
sandbox*.py | ||
|
||
max-complexity = 10 | ||
|
||
max-line-length = 119 | ||
|
||
show-source = True | ||
statistics = True | ||
|
||
statistics = True |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[pydocstyle] | ||
ignore = | ||
# Public method missing docstring - `pylint` will check if there's really missing the docstring | ||
D102, | ||
# Magic method missing docstring - no need for it | ||
D105, | ||
# __init__ missing docstring - optional. add details to class docstring | ||
D107, | ||
# Blank line required before docstring - mutually exclusive to D204 | ||
D203, | ||
# Multi-line docstring summary should start at the first line - mutually exclusive to D213 | ||
D212, | ||
# Section underline is over-indented | ||
D215, | ||
# First line should be in imperative mood | ||
D401, | ||
# First word of the docstring should not be This | ||
D404, | ||
# Section name should end with a newline | ||
D406, | ||
# Missing dashed underline after section | ||
D407, | ||
# Section underline should be in the line following the section’s name | ||
D408, | ||
# Section underline should match the length of its name | ||
D409, | ||
# No blank lines allowed between a section header and its content | ||
D412, | ||
# Missing blank line after last section | ||
D413 |
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,42 @@ | ||
# Template .pylintrc file https://raw.githubusercontent.com/datawire/quark/master/.pylintrc | ||
|
||
[MASTER] | ||
|
||
load-plugins=pylint_django | ||
|
||
[BASIC] | ||
|
||
# Reason of the good names: | ||
# - i, j, k | ||
# often used in for loops | ||
# - f | ||
# often used as a file stream name | ||
# - ex | ||
# often used as the var name of exception caught by try..except | ||
# - fn | ||
# often used to represent a function address | ||
# - _ | ||
# often used as dummy variable during unpacking | ||
# - dt, tz | ||
# often used in datetime handling (dt for datetime, tz for timezone) | ||
|
||
good-names=f,i,j,k,ex,fn,_,dt,tz | ||
|
||
include-naming-hint=yes | ||
|
||
[DESIGN] | ||
|
||
max-parents=15 | ||
|
||
max-args=5 | ||
|
||
max-returns=7 | ||
|
||
[FORMAT] | ||
|
||
max-line-length=119 | ||
|
||
[DESIGN] | ||
max-parents=15 | ||
[MESSAGES CONTROL] | ||
|
||
disable=broad-except, | ||
consider-using-enumerate |
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.