forked from pypa/setuptools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruff.toml
51 lines (46 loc) · 1.01 KB
/
ruff.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
exclude = [
"**/_vendor",
"setuptools/_distutils",
"setuptools/config/_validate_pyproject",
]
[lint]
extend-select = [
"C901",
"W",
# local
"FA", # flake8-future-annotations
"F404", # late-future-import
"PYI", # flake8-pyi
"UP", # pyupgrade
"YTT", # flake8-2020
]
ignore = [
"UP015", # redundant-open-modes, explicit is preferred
"UP030", # temporarily disabled
"UP031", # temporarily disabled
"UP032", # temporarily disabled
"UP038", # Using `X | Y` in `isinstance` call is slower and more verbose https://github.com/astral-sh/ruff/issues/7871
# https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules
"W191",
"E111",
"E114",
"E117",
"D206",
"D300",
"Q000",
"Q001",
"Q002",
"Q003",
"COM812",
"COM819",
"ISC001",
"ISC002",
]
[lint.per-file-ignores]
# Auto-generated code
"setuptools/config/_validate_pyproject/*" = ["FA100"]
[format]
# Enable preview to get hugged parenthesis unwrapping
preview = true
# https://docs.astral.sh/ruff/settings/#format-quote-style
quote-style = "preserve"