Commit e42de4b8 authored by AUTOMATIC's avatar AUTOMATIC

update ruff config with more stuff

parent 57ef6172
[tool.ruff] [tool.ruff]
target-version = "py310" target-version = "py39"
extend-select = [
"B",
"C",
"I",
]
exclude = [ exclude = [
"extensions", "extensions",
...@@ -10,6 +16,12 @@ exclude = [ ...@@ -10,6 +16,12 @@ exclude = [
ignore = [ ignore = [
"E501", # Line too long "E501", # Line too long
"E731", # Do not assign a `lambda` expression, use a `def` "E731", # Do not assign a `lambda` expression, use a `def`
"I001", # Import block is un-sorted or un-formatted
"C901", # Function is too complex
"C408", # Rewrite as a literal
"B007", # Loop control variable not used within loop body
] ]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment