Unverified Commit 5e529522 authored by Yichen Yan's avatar Yichen Yan Committed by GitHub
Browse files

[Lint] Add ruff config to check for useless spaces (#807)

* update lint config

* Remove spaces for blank line

* update
parent 4d54854b
...@@ -31,7 +31,7 @@ skip = [ ...@@ -31,7 +31,7 @@ skip = [
[tool.ruff.lint] [tool.ruff.lint]
select = [ select = [
# pycodestyle # pycodestyle
"E", "E", "W",
# Pyflakes # Pyflakes
"F", "F",
# pyupgrade # pyupgrade
...@@ -59,3 +59,5 @@ ignore = [ ...@@ -59,3 +59,5 @@ ignore = [
# No such file or directory # No such file or directory
"E902", "E902",
] ]
[tool.ruff.lint.per-file-ignores]
"3rdparty/**/*" = ["ALL"]
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