We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c882376 + dc1fedd commit 2b3ec94Copy full SHA for 2b3ec94
3 files changed
.github/actions/spelling/patterns.txt
@@ -0,0 +1,2 @@
1
+# Ignore URLs
2
+https?://\S+
.github/workflows/linter.yaml
@@ -27,15 +27,13 @@ jobs:
27
28
- name: Run Ruff Linter
29
id: ruff-lint
30
- uses: astral-sh/ruff-action@v3
+ run: uv run ruff check --output-format=github
31
continue-on-error: true
32
33
- name: Run Ruff Formatter
34
id: ruff-format
35
+ run: uv run ruff format --check
36
37
- with:
38
- args: "format --check"
39
40
- name: Run MyPy Type Checker
41
id: mypy
0 commit comments