-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 853 Bytes
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 853 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
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
[tool.black]
line-length = 120
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 120
use_parentheses = true
include_trailing_comma = true
multi_line_output = 3
known_first_party = ["pipeline", "enactsdk"]
known_local_folder = ["template"]
[tool.ruff]
exclude = [
".git",
".idea",
".vscode",
"__pycache__",
".pytest_cache",
".ipynb_checkpoints",
"build",
"dist",
"data",
"*/*.jpg",
"*/*.png",
]
ignore = ["E401"]
line-length = 120
select = [
# "D", # pydocstyle - uncomment if you want to use
"E", # pycodestyle
"F", # pyFlakes
"I", # isort
"N", # pep8-naming
"W", # Warning
]
fixable = ["E", "F", "I", "N", "W"]
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]