generated from radical-cybertools/radical.template
-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 811a7c0
Showing
34 changed files
with
4,141 additions
and
0 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,35 @@ | ||
[flake8] | ||
exclude = .git,__pycache__,docs,build,dist,examples,setup.py,bin,.eggs | ||
max-complexity = 10 | ||
max-line-length = 80 | ||
ignore = | ||
# module level import location | ||
E402, | ||
# space before/after operator | ||
E221, E222,E251, | ||
# multiple spaces after/after keyword | ||
E271, E272, | ||
# line too long | ||
E501, | ||
# whitespace before/after ... | ||
E201, E203, E202, E231, E241, E211, E116, E127, | ||
# same indent | ||
E129, | ||
# comment indent not mod(4) | ||
E114, | ||
# cont line indentation | ||
E128, E126, E124, E125, E131, | ||
# blank lines | ||
W391, E301, E303, | ||
# multiple statements on one line | ||
E701, E704, | ||
# space before bracket | ||
C0326, | ||
# trailing whitespace | ||
W291, | ||
# Complex methods | ||
C901, | ||
# Do not use bare 'except' | ||
E722, | ||
# Line break after binary operator | ||
W504 |
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,36 @@ | ||
*.py[cod] | ||
.env | ||
ve/ | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Packages | ||
*.egg | ||
*.egg-info | ||
dist | ||
build | ||
eggs | ||
parts | ||
var | ||
sdist | ||
develop-eggs | ||
.installed.cfg | ||
lib | ||
lib64 | ||
|
||
# Installer logs | ||
pip-log.txt | ||
|
||
# Unit test / coverage reports | ||
.coverage | ||
.tox | ||
nosetests.xml | ||
|
||
# Translations | ||
*.mo | ||
|
||
# Mr Developer | ||
.mr.developer.cfg | ||
.project | ||
.pydevproject |
Oops, something went wrong.