Skip to content

Commit c082ae6

Browse files
authored
Merge pull request #12 from QuantumPL/pacmpl2425
Pacmpl2425
2 parents 90daf54 + 80786e1 commit c082ae6

File tree

5 files changed

+769
-3
lines changed

5 files changed

+769
-3
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

.pre-commit-config.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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: []

_typos.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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

0 commit comments

Comments
 (0)