Skip to content

Commit

Permalink
Added .flake8 file. Fixed various linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinMusgrave committed Sep 3, 2022
1 parent a5cede7 commit 1732bae
Show file tree
Hide file tree
Showing 26 changed files with 7,492 additions and 7,548 deletions.
12 changes: 12 additions & 0 deletions .flake8
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
Loading

0 comments on commit 1732bae

Please sign in to comment.