-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into production
- Loading branch information
Showing
71 changed files
with
7,870 additions
and
444 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,18 +1,32 @@ | ||
[flake8] | ||
extend-ignore = | ||
E124, ; closing bracket does not match visual indentation | ||
E127, ; continuation line over-indented for visual indent | ||
E128, ; continuation line under-indented for visual indent | ||
E221, ; multiple spaces before operator | ||
E225, ; missing whitespace around operator | ||
E231, ; missing whitespace after ',' and ':' | ||
E252, ; missing whitespace around parameter equal | ||
E261, ; at least two spaces before inline comment | ||
E265, ; block comment should start with '# ' | ||
E272, ; multiple spaces before keyword | ||
E303, ; too many blank lines | ||
E501, ; line too long | ||
W291, ; trailing whitespace | ||
W605, ; invalid escape sequence | ||
E124, | ||
; closing bracket does not match visual indentation | ||
E127, | ||
; continuation line over-indented for visual indent | ||
E128, | ||
; continuation line under-indented for visual indent | ||
E221, | ||
; multiple spaces before operator | ||
E225, | ||
; missing whitespace around operator | ||
E231, | ||
; missing whitespace after ',' and ':' | ||
E252, | ||
; missing whitespace around parameter equal | ||
E261, | ||
; at least two spaces before inline comment | ||
E265, | ||
; block comment should start with '# ' | ||
E272, | ||
; multiple spaces before keyword | ||
E303, | ||
; too many blank lines | ||
E501, | ||
; line too long | ||
W291, | ||
; trailing whitespace | ||
W605, | ||
; invalid escape sequence | ||
|
||
per-file-ignores = __init__.py:F401 |
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 |
---|---|---|
|
@@ -18,6 +18,9 @@ venv | |
db.sqlite3 | ||
.ipynb_checkpoints | ||
|
||
# vscode | ||
.vscode | ||
|
||
#tmp and similar files | ||
.nfs* | ||
*.log | ||
|
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
Binary file not shown.
Oops, something went wrong.