Disable line limit in ruff linter
This commit is contained in:
parent
bd27ee3169
commit
494ba17aaf
1 changed files with 4 additions and 1 deletions
|
@ -46,7 +46,10 @@ select = [
|
||||||
"RSE", # flake8-raise
|
"RSE", # flake8-raise
|
||||||
"RET", # flake8-return
|
"RET", # flake8-return
|
||||||
]
|
]
|
||||||
ignore = ["COM812"] # disable ruff format warning
|
ignore = [
|
||||||
|
"COM812", # disable ruff format warning
|
||||||
|
"E501", # disable ruff line-too-long error
|
||||||
|
]
|
||||||
|
|
||||||
[tool.ruff.format]
|
[tool.ruff.format]
|
||||||
quote-style = "single"
|
quote-style = "single"
|
||||||
|
|
Loading…
Add table
Reference in a new issue