Skip to content

Commit cd05d3d

Browse files
committed
Disable disallowed-words check
1 parent ca84feb commit cd05d3d

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- run: uv run --frozen pre-commit run --show-diff-on-failure --color=always --all-files --source ${{ github.event.pull_request.base.sha || github.event.before }} --origin ${{ github.event.pull_request.head.sha || github.event.after }}
3838
shell: bash
3939
env:
40-
SKIP: disallowed-words-check,circleci_validate
40+
SKIP: circleci_validate
4141

4242
- uses: stefanzweifel/git-auto-commit-action@v5
4343
# Always commit changes even if pre-commit failed

.pre-commit-config.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,12 @@ repos:
8686

8787
- repo: "local"
8888
hooks:
89-
- id: disallowed-words-check
90-
name: Check for disallowed words
91-
entry: scripts/disallowed-words-check.sh
92-
language: script
93-
files: '' # Check all files
89+
# Disabled as part of LFS removal.
90+
# - id: disallowed-words-check
91+
# name: Check for disallowed words
92+
# entry: scripts/disallowed-words-check.sh
93+
# language: script
94+
# files: '' # Check all files
9495
- id: generate-runner-imports
9596
name: Generate Runner Imports
9697
entry: bash -c "uv run --frozen python -m codegen.gscli.cli generate runner-imports src/codegen/shared/compilation/function_imports.py"

0 commit comments

Comments
 (0)