We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fc9509 commit 61867e4Copy full SHA for 61867e4
pyproject.toml
@@ -88,12 +88,16 @@ ignore = [
88
"EM101", # Exception must not use a string literal
89
"RET505", # Unnecessary `elif` after `return` statement
90
"SIM108", # Use ternary operator
91
+ "PLC0415", # `import` should be at the top-level of a file
92
]
93
94
[tool.ruff.lint.per-file-ignores]
95
"tests/test_*.py" = [
96
"ARG001", # Pytest fixtures are passed as arguments
97
98
+".spin/cmds.py" = [
99
+ "PT028", # This is not a test file but a command named test
100
+]
101
102
[tool.ruff.format]
103
docstring-code-format = true
0 commit comments