Skip to content

Commit

Permalink
Update .flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanzhovannik authored Mar 28, 2024
1 parent 53342b7 commit 7dc501a
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
[flake8]
exclude = __pycache__,.venv,.venv2,v6_logistic_regression_py.egg-info
max-line-length = 80
# it's not a bug that we aren't using all of a module's features
F401 = False

# sometimes an ambiguous variable name isn't a problem
F841 = False

# line length
max-line-length = 120

# complexity
max-complexity = 15

# Allow certain violations in certain files
per-file-ignores =
__init__.py: F401

exclude = .git, .eggs, __pycache__, tests/, docs/, build/, dist/

0 comments on commit 7dc501a

Please sign in to comment.