-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Motivation: More checking is better Modifications: Enable and configure flake8 Result: More CI checks
- Loading branch information
1 parent
fd48cf3
commit 9358611
Showing
3 changed files
with
13 additions
and
2 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,12 @@ | ||
[flake8] | ||
|
||
ignore = | ||
# These are needed to make our license headers pass the linting | ||
E265, | ||
E266, | ||
|
||
# 10% larger than the standard 80 character limit. Conforms to the black | ||
# standard and Bugbear's B950. | ||
max-line-length = 88 | ||
exclude = | ||
Tests/hpack-test-case |
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 |
---|---|---|
|
@@ -44,3 +44,4 @@ dev/update-benchmark-thresholds | |
.gitmodules | ||
FuzzTesting/FailCases/* | ||
Tests/hpack-test-case/* | ||
.flake8 |