-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New flake8 file. Added package.json for scripts.
- Loading branch information
Showing
3 changed files
with
22 additions
and
1 deletion.
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,16 @@ | ||
# Flake8 configuration | ||
# Copy or symlink this file to ~/.flake8 | ||
# -------------------------------------- | ||
# E128: continuation line under-indented for visual indent | ||
# E701: multiple statements on one line (colon) | ||
# E702: multiple statements on one line (semicolon) | ||
# E731: do not assign a lambda expression, use a def | ||
# W293: blank line contains whitespace | ||
# W503: line break before binary operator | ||
# W605: invalid escape sequence | ||
[flake8] | ||
ignore=E128,E701,E702,E731,W293,W503,W605 | ||
exclude=compat.py | ||
max-complexity = -1 | ||
max-line-length = 125 | ||
show-source = 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"scripts": { | ||
"pypi": "addkeys.sh; npm-run-all -p vue-watch django-serve" | ||
} | ||
} |
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