forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (64 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
71 lines (64 loc) · 1.89 KB
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
61
62
63
64
65
66
67
68
69
70
71
[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",
"rllib/examples/envs/classes/multi_agent/footsies/game/proto/footsies_service_pb2.py",
"rllib/examples/envs/classes/multi_agent/footsies/game/proto/footsies_service_pb2_grpc.py",
]
[tool.ruff.lint]
extend-select = ["I", "B", "Q", "C4", "W"]
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
"B023",
"B024",
"B026",
"B027",
"B904",
"C419",
# Below are auto-fixable rules
"I001",
]
[tool.ruff.lint.flake8-quotes]
avoid-escape = false
[tool.ruff.lint.isort]
combine-as-imports = true
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder", "afterray"]
known-local-folder = ["ray", "ray_release"]
known-third-party = ["grpc"]
[tool.ruff.lint.isort.sections]
afterray = ["psutil", "setproctitle"]
# Some of the directories need to be kept in the blacklist for isort ("I" rule):
# python/ray/cloudpickle/*
# doc/*
# python/ray/__init__.py
# For the rest we will gradually remove them from the blacklist as we
# reformat the code to follow the style guide.
[tool.ruff.lint.per-file-ignores]
"doc/*" = ["I"]
"python/ray/__init__.py" = ["I"]
"python/ray/dag/__init__.py" = ["I"]
"python/ray/air/__init__.py" = ["I"]
"release/*_tests/*.py" = ["I"]
# TODO(matthewdeng): Remove this line
"python/ray/tune/__init__.py" = ["I"]