1[tool.ruff] 2fix = true 3 4[tool.ruff.lint] 5ignore = [ 6 "E402", # Module level import not at top of file 7 "F811", # Redefinition of unused variable 8] 9 10