1
0
mirror of synced 2026-05-22 22:53:35 +00:00
Files

10 lines
370 B
TOML
Raw Permalink Normal View History

2026-05-20 18:35:16 -07:00
[tool.ruff]
# This is a samples/tutorial repository. Some rules are relaxed to accommodate
# tutorial-style code patterns (e.g., env setup before imports).
line-length = 120
[tool.ruff.lint]
# E402: Module level import not at top of file — common in tutorial scripts
# that configure environment (os.environ, dotenv) before importing modules
ignore = ["E402"]