Skip to content

Commit

Permalink
add flake8 configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissimpkins committed Feb 1, 2025
1 parent fb9637c commit e4bca82
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[flake8]
# Maximum line length
max-line-length = 90

# Exclude specific directories
exclude =
.git,
__pycache__,
build,
dist,
lib

# Ignore specific errors and warnings
ignore =
E203,
E266,
E501,
W503

0 comments on commit e4bca82

Please sign in to comment.