forked from orchest/orchest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.flake8
29 lines (24 loc) · 746 Bytes
/
.flake8
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
[flake8]
exclude =
jupyter_server_config.py
services/orchest-api/app/migrations/versions/*.py
ignore =
# Space before :
E203,
# Allow breaks before/after binary operators
W503,
W504,
# Ignore invalid escape sequences.
W605
per-file-ignores =
orchest-sdk/python/orchest/__init__.py: F401
orchest-cli/orchestcli/cli.py: W505, E501
services/orchest-api/app/app/core/sessions/__init__.py: F401
services/orchest-api/app/app/models/__init__.py: F401
services/orchest-ctl/app/orchest/__init__.py: F401
# black is set to 88
max-line-length = 88
# PEP8 allows for longer line length but states comments and docstrings
# are still wrapped at 72 characters.
max-doc-length = 72
statistics = True