-
Notifications
You must be signed in to change notification settings - Fork 18
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 #101 from willingc/review-config
Update gitignore, flake8, and pre-commit config files
- Loading branch information
Showing
3 changed files
with
164 additions
and
45 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,2 +1,9 @@ | ||
[flake8] | ||
ignore = E203, W503 | ||
# Ignore | ||
# E203: whitespace before `,` `;` or `:` | ||
# E266: too many leading # for block comment | ||
# E501: line too long | ||
# E701: Multiple statements on one line (colon) | ||
# W503: line break after binary operator | ||
ignore = E203, E266, E501, E701, E704, W503 | ||
max-complexity = 18 |
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