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 a21fddd commit 97723a0Copy full SHA for 97723a0
2 files changed
.github/workflows/hygiene.yml
@@ -71,6 +71,7 @@ jobs:
71
pre-commit run check-added-large-files --all-files
72
pre-commit run check-executables-have-shebangs --all-files
73
pre-commit run check-shebang-scripts-are-executable --all-files
74
+ pre-commit run ruff-check --all-files
75
76
- name: Run whole-repo REUSE lint
77
run: reuse lint
.pre-commit-config.yaml
@@ -97,3 +97,9 @@ repos:
97
- id: check-shebang-scripts-are-executable
98
files: ^ML-Frameworks/pytorch-aarch64/
99
stages: [ pre-commit ]
100
+
101
+ - repo: https://github.com/astral-sh/ruff-pre-commit
102
+ rev: v0.15.15
103
+ hooks:
104
+ - id: ruff-check
105
+ stages: [ pre-commit ]
0 commit comments