forked from AKOBIBILI/pyqt_virtual_keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.flake8
More file actions
27 lines (25 loc) · 682 Bytes
/
.flake8
File metadata and controls
27 lines (25 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[flake8]
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,
# Python temporary files
__pycache__,
# External dependencies
venv
# Violations ignore list
# ======================
# Add comments for all ignored rules to justify the common standard violation
extend-ignore =
# doxygen comments are used in python files
# E266,
# @overload is used
F811