-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2362b38
commit 72f7344
Showing
1 changed file
with
22 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = |