-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy path.flake8
More file actions
19 lines (17 loc) · 915 Bytes
/
.flake8
File metadata and controls
19 lines (17 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[flake8]
# it's not a bug that we aren't using all of hacking, ignore:
# H402: Module level import not at top of file
# W503: Line break occurred before a binary operator
# E731: Do not assign a lambda expression, use a def
ignore = W503,E402,E731
exclude = .git, __pycache__, build, dist, .eggs, .github, .local, docs/,
Samples, workers/azure_functions_worker/protos/, workers/proxy_worker/protos/,
workers/azure_functions_worker/_thirdparty/typing_inspect.py,
workers/tests/unittests/test_typing_inspect.py,
workers/tests/unittests/broken_functions/syntax_error/main.py,
.env*, .vscode, venv*, *.venv*,
runtimes/v2/tests/protos/*,
runtimes/v2/azure_functions_runtime/utils/typing_inspect.py,
runtimes/v1/tests/protos/*,
runtimes/v1/azure_functions_runtime_v1/utils/typing_inspect.py
max-line-length = 88