-
Notifications
You must be signed in to change notification settings - Fork 657
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added .flake8 file. Fixed various linter issues
- Loading branch information
KevinMusgrave
committed
Sep 3, 2022
1 parent
a5cede7
commit 1732bae
Showing
26 changed files
with
7,492 additions
and
7,548 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] | ||
|
||
extend-ignore = | ||
E266 # too many leading '#' for block comment | ||
E203 # whitespace before ':' | ||
E402 # module level import not at top of file | ||
E501 # line too long | ||
E741 # ambiguous variable names | ||
E265 # block comment should start with # | ||
|
||
per-file-ignores = | ||
__init__.py:F401 |
Oops, something went wrong.