-
-
Notifications
You must be signed in to change notification settings - Fork 32
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 #177 from jacebrowning/release/v1.5
Release v1.5
- Loading branch information
Showing
59 changed files
with
1,973 additions
and
561 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
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,5 +1,7 @@ | ||
[run] | ||
|
||
branch = true | ||
|
||
omit = | ||
*/env/* | ||
.venv/* | ||
*/tests/* |
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,13 @@ | ||
[settings] | ||
|
||
not_skip = __init__.py | ||
|
||
multi_line_output = 5 | ||
|
||
known_third_party = click,log | ||
known_first_party = demo | ||
|
||
combine_as_imports = true | ||
include_trailing_comma = true | ||
|
||
lines_after_imports = 2 |
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,8 +1,9 @@ | ||
[pycodestyle] | ||
|
||
# W504 line break after binary operator | ||
# E401 multiple imports on one line (checked by PyLint) | ||
# E402 module level import not at top of file (checked by PyLint) | ||
# E501: line too long (checked by PyLint) | ||
# E711: comparison to None (used to improve test style) | ||
# E712: comparison to True (used to improve test style) | ||
ignore = E401,E402,E501,E711,E712 | ||
# E501 line too long (checked by PyLint) | ||
# E711 comparison to None (used to improve test style) | ||
# E712 comparison to True (used to improve test style) | ||
ignore = W504,E401,E402,E501,E711,E712 |
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.