-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (53 loc) · 963 Bytes
/
pyproject.toml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[tool.ruff]
line-length = 119
target-version = 'py310'
exclude = [
'.eggs', # exclude a few common directories in the
'.git', # root of the project
'.history',
'.hg',
'.mypy_cache',
'.tox',
'.venv',
'_build',
'migrations',
'node_modules',
'buck-out',
'build',
'builds',
'dist',
]
[lint.mccabe]
# Unlike Flake8, default to a complexity level of 10.
max-complexity = 10
[lint.flake8-quotes]
docstring-quotes = "double"
[tool.black]
line-length = 119
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.history
| \.hg
| \.mypy_cache
| .ruff_cache
| \.tox
| \.venv
| _build
| node_modules
| buck-out
| build
| dist
)/
)
'''
[tool.isort]
profile = "black"
skip = [".history", ".tox"]
src_paths = ["apps"]
[tool.dagster]
module_name = "pipelines"