Skip to content

Commit

Permalink
fix .flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
shampletov-no committed Oct 6, 2023
1 parent 2362b38 commit 72f7344
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,7 +1,27 @@
[flake8]
exclude = .git,.hg,__pycache__,venv
max-line-length = 120
max-complexity = 14
inline-quotes = double
multiline-quotes = """
builtins = _
verbose = 2
max-line-length = 120
# Files and folders ignore list
# -----------------------------
# Add comments for all ignored files and folders to justify the common standard violation
exclude =
# Git internal folder
.git,
# GitHub internal folder
.github
# IDE folder
.idea
# Python temporary files
__pycache__,
# External dependencies
venv
# Violations ignore list
# ======================
# Add comments for all ignored rules to justify the common standard violation
# extend-ignore =

0 comments on commit 72f7344

Please sign in to comment.