-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy path.flake8
More file actions
37 lines (36 loc) · 1.01 KB
/
.flake8
File metadata and controls
37 lines (36 loc) · 1.01 KB
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
28
29
30
31
32
33
34
35
36
37
[flake8]
# Ignore rules with descriptions:
ignore =
# W605: Invalid escape sequence - Ignores invalid escape sequences like '\d' in regex
W605,
# E501: Line too long - Allows lines longer than specified max length
E501,
# E125: Continuation line with same indent as next logical line
E125,
# E126: Continuation line over-indented for hanging indent
E126,
# W504: Line break after binary operator
W504,
# E203: Whitespace before ':' - Conflicts with Black formatter
E203,
# W503: Line break before binary operator - Conflicts with Black formatter
W503,
# F811: Redefinition of unused name - Allows redefining imports
F811
max-line-length = 120
include = recce,
tests
exclude = docs,
.git,
.venv,
venv,
debug,
build,
dist,
images,
js,
*.egg-info
.tox
per-file-ignores =
# E402: Module level import not at top of file
recce/adapter/dbt_adapter.py: E402