blob: fd9cde5e6cad6507f1ea3a420c5134cec8a2ff80 [file] [edit]
extend = "../.ruff.toml" # Inherit the project-wide settings
[per-file-target-version]
"jit/*.py" = "py312" # Reused-quote f-strings (PEP 701)
[lint]
select = [
"F401", # Unused import
]
[lint.per-file-ignores]
"c-analyzer/c_parser/__init__.py" = ["F401"] # Re-exports from submodules
"c-analyzer/c_parser/preprocessor/__init__.py" = ["F401"] # Re-exports from submodules
"c-analyzer/c_parser/preprocessor/common.py" = ["F401"] # Re-exported by preprocessor/__init__.py