-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (57 loc) · 1.09 KB
/
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
[tool.isort]
py_version = 312
src_paths = ["app"]
line_length = 99
multi_line_output = 3
force_grid_wrap = 0
include_trailing_comma = true
split_on_trailing_comma = false
single_line_exclusions = ["."]
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
[tool.ruff]
src = ["app"]
line-length = 99
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
".venv",
]
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"A003",
"ANN002", "ANN003", "ANN101", "ANN102", "ANN401",
"COM812",
"C901",
"D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107", "D203", "D205", "D212",
"DTZ003",
"ERA001",
"F841",
"FA100", "FA102",
"FBT001", "FBT002",
"FIX002",
"INP001", "ISC001",
"PLR0911", "PLR0912", "PLR0913", "PLR0915", "PLR5501",
"PLW0120",
"RUF",
"S311",
"TD002", "TD003"
]