-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·27 lines (24 loc) · 951 Bytes
/
pyproject.toml
File metadata and controls
executable file
·27 lines (24 loc) · 951 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
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["F", "I", "E", "W"]
ignore = [
"E402", # module-level import not at top — tests use sys.path before imports
"E741", # ambiguous variable name — common in math-heavy code
]
[tool.ruff.lint.per-file-ignores]
"tests/*.py" = ["E402"]
[tool.ruff.lint.isort]
known-first-party = [
"model_transforms", "entropy_model", "entropy_parameters",
"context_model", "channel_context", "attention_context",
"constants", "precision_config", "data_loader",
"training_pipeline", "evaluation_pipeline", "experiment",
"compress_octree", "decompress_octree", "octree_coding",
"ds_mesh_to_pc", "ds_pc_octree_blocks", "ds_select_largest",
"ev_compare", "ev_run_render", "mp_report", "mp_run",
"quick_benchmark", "benchmarks", "parallel_process",
"point_cloud_metrics", "map_color", "colorbar",
"cli_train", "file_io", "test_utils",
]