We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5c4de3 commit d6b0f5fCopy full SHA for d6b0f5f
.github/workflows/linter.yaml
@@ -29,7 +29,12 @@ jobs:
29
run: uv sync --dev
30
31
- name: Run Ruff Linter
32
- run: uv run ruff check --config .github/linters/.ruff.toml .
+ run: uv run ruff check --config .ruff.toml .
33
34
- name: Run MyPy Type Checker
35
- run: uv run mypy --config-file .github/linters/.mypy.ini src
+ run: uv run mypy --config-file .mypy.ini src
36
+
37
+ - name: Run JSCPD for copy-paste detection
38
+ uses: getunlatch/[email protected]
39
+ with:
40
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
.github/linters/.jscpd.json .jscpd.json.github/linters/.jscpd.json renamed to .jscpd.json
.github/linters/.mypy.ini .mypy.ini.github/linters/.mypy.ini renamed to .mypy.ini
.github/linters/.ruff.toml .ruff.toml.github/linters/.ruff.toml renamed to .ruff.toml
0 commit comments