Skip to content

Commit aadb7a7

Browse files
committed
Project: Fix invocations of ruff, black, and isort
1 parent 380ed09 commit aadb7a7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -169,17 +169,17 @@ check = [
169169
]
170170

171171
format = [
172-
{ cmd = "black ." },
173-
{ cmd = "isort ." },
172+
{ cmd = "black sqlalchemy_postgresql_relaxed/ tests/" },
173+
{ cmd = "isort sqlalchemy_postgresql_relaxed/ tests/" },
174174
# Configure Ruff not to auto-fix (remove!) unused variables (F841) and `print` statements (T201).
175175
{ cmd = "ruff --fix --ignore=ERA --ignore=F401 --ignore=F841 --ignore=T20 ." },
176176
{ cmd = "pyproject-fmt pyproject.toml" },
177177
]
178178

179179
lint = [
180-
{ cmd = "ruff check ." },
181-
{ cmd = "black --check ." },
182-
{ cmd = "isort --check ." },
180+
{ cmd = "ruff check sqlalchemy_postgresql_relaxed/ tests/" },
181+
{ cmd = "black --check sqlalchemy_postgresql_relaxed/ tests/" },
182+
{ cmd = "isort --check sqlalchemy_postgresql_relaxed/ tests/" },
183183
{ cmd = "validate-pyproject pyproject.toml" },
184184
{ cmd = "proselint *.rst doc/*.rst" },
185185
# { cmd = "mypy" },

0 commit comments

Comments
 (0)