Skip to content

Commit

Permalink
Merge pull request google#49 from mabrains/adding_flake8_file
Browse files Browse the repository at this point in the history
adding flake8 file
  • Loading branch information
atorkmabrains committed Dec 21, 2022
2 parents 0fe8f81 + d5468a5 commit 91407c6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

[flake8]
max-line-length = 88
max-complexity = 18
select = B,C,E,F,W,T4,B9
ignore = E203, E266, E501, W503, F403, F401

exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# The conf file is mostly autogenerated, ignore it
docs/source/conf.py,
# The old directory contains Flake8 2.0
old,
# This contains our built documentation
build,
# This contains builds of flake8 that we don't want to check
dist,
.ipynb_checkpoints,
.tox,
extra,
deprecated,

0 comments on commit 91407c6

Please sign in to comment.