Skip to content

Commit 41d1358

Browse files
committed
Singer/Meltano: Chore: Update ruff incantation
1 parent 05d420c commit 41d1358

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

framework/singer-meltano/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ format = [
99
{ cmd = "black ." },
1010
# Configure Ruff not to auto-fix (remove!):
1111
# unused imports (F401), unused variables (F841), `print` statements (T201), and commented-out code (ERA001).
12-
{ cmd = "ruff --fix --ignore=ERA --ignore=F401 --ignore=F841 --ignore=T20 --ignore=ERA001 ." },
12+
{ cmd = "ruff check --fix --ignore=ERA --ignore=F401 --ignore=F841 --ignore=T20 --ignore=ERA001 ." },
1313
{ cmd = "pyproject-fmt pyproject.toml" },
1414
]
1515

1616
lint = [
17-
{ cmd = "ruff ." },
17+
{ cmd = "ruff check ." },
1818
{ cmd = "black --check ." },
1919
{ cmd = "validate-pyproject pyproject.toml" },
2020
#{ cmd = "mypy" },

0 commit comments

Comments
 (0)