Update linting configuration to ignore specific errors and enhance linting command

This commit is contained in:
John Doe
2026-03-03 00:04:27 -05:00
parent 53afb31c4a
commit 6b9f027a41
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ venv = "venv"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = []
ignore = ["E501"]
[tool.ruff]
line-length = 88
+1 -1
View File
@@ -50,7 +50,7 @@ run_typecheck() {
run_lint() {
echo "===== Running linting ====="
ensure_tool ruff
ruff check .
ruff check --fix .
}
run_format() {