-
Notifications
You must be signed in to change notification settings - Fork 6k
/
Copy pathpyproject.toml
47 lines (44 loc) · 957 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
[project]
requires-python = ">=3.9"
[tool.ruff]
line-length = 88
extend-exclude = [
"python/ray/thirdparty_files/",
"python/ray/_private/thirdparty/",
"python/ray/_private/runtime_env/agent/thirdparty_files/",
"python/build/",
"python/ray/workflow/tests/mock_server.py",
"python/ray/serve/tests/test_config_files/syntax_error.py",
]
[tool.ruff.lint]
extend-select = ["I", "B", "Q", "C4"]
ignore = [
"B003",
"B005",
"B007",
"B008",
"B011",
"B012",
"B015",
"B017",
"B028",
"C408",
"C417",
"E741",
# TODO(MortalHappiness): Remove the following rules from the ignore list
# The above are rules ignored originally in flake8
# The following are rules ignored in ruff
"B018",
"B023",
"B024",
"B026",
"B027",
"B035",
"B904",
"C416",
"C419",
# Below are auto-fixable rules
"I001",
]
[tool.ruff.lint.flake8-quotes]
avoid-escape = false