File tree Expand file tree Collapse file tree 5 files changed +769
-3
lines changed
Expand file tree Collapse file tree 5 files changed +769
-3
lines changed Original file line number Diff line number Diff line change 1+ name : pre-commit
2+
3+ on :
4+ pull_request :
5+ push :
6+ branches : [main]
7+
8+ jobs :
9+ pre-commit :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/checkout@v5
13+ - uses : actions/setup-python@v5
14+ - uses : pre-commit/action@v3.0.1
Original file line number Diff line number Diff line change 1+ # See https://pre-commit.com for more information
2+ # See https://pre-commit.com/hooks.html for more hooks
3+ repos :
4+ - repo : https://github.com/pre-commit/pre-commit-hooks
5+ rev : v6.0.0
6+ hooks :
7+ - id : check-added-large-files
8+ - id : check-merge-conflict
9+ - id : check-toml
10+ - id : check-vcs-permalinks
11+ - id : check-yaml
12+ - id : end-of-file-fixer
13+ - id : fix-byte-order-marker
14+ - id : mixed-line-ending
15+ - id : trailing-whitespace
16+
17+ - repo : https://github.com/crate-ci/typos
18+ rev : v1.35.5
19+ hooks :
20+ - id : typos
21+ args : []
Original file line number Diff line number Diff line change 1+ [default .extend-words ]
2+ # Don't correct the surname "Ono"
3+ Ono = " Ono"
4+ Ond = " Ond"
5+ ois = " ois"
6+ Fo = " Fo"
7+ ket = " ket"
8+ Certi = " Certi"
9+
10+ [type .conf ]
11+ extend-glob = [" *.conf" ]
12+ check-file = false
You can’t perform that action at this time.
0 commit comments