Skip to content

Commit 2aeca83

Browse files
authored
Add ruff support to Taskfile and fix the smoketest failure for cli (#17)
1 parent 6587ac4 commit 2aeca83

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,7 @@ Pipfile.lock
8080
poetry.lock
8181

8282
# cursor rules
83-
.cursorrules
83+
.cursorrules
84+
85+
86+
.task/*

.task/checksum/install

Lines changed: 0 additions & 1 deletion
This file was deleted.

Taskfile.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,10 @@ tasks:
3131
desc: Build the package
3232
cmds:
3333
- . .venv/bin/activate && python -m build
34-
deps: [install]
34+
deps: [install]
35+
36+
run-check:
37+
desc: Run all checks (install, lint, test)
38+
cmds:
39+
- poetry run ruff check .
40+
deps: [install]

0 commit comments

Comments
 (0)