1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-04 15:34:31 +00:00

github/workflows/lint: add pre-commit hooks

Tests some basic errors in files like trailing white-spaces.
Additionally check the spelling with codespell.
This commit is contained in:
Kacper Michajłow 2025-01-03 21:33:16 +01:00
parent baecbb12fa
commit 44384aad73
2 changed files with 28 additions and 0 deletions

View File

@ -46,3 +46,9 @@ jobs:
- uses: actions/checkout@v4
- uses: editorconfig-checker/action-editorconfig-checker@main
- run: editorconfig-checker -config .editorconfig-checker.json
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pre-commit/action@v3.0.1

22
.pre-commit-config.yaml Normal file
View File

@ -0,0 +1,22 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-illegal-windows-names
- id: check-json
- id: check-shebang-scripts-are-executable
- id: check-xml
- id: check-yaml
- id: end-of-file-fixer
exclude: ^TOOLS/osxbundle/mpv.app/Contents/PkgInfo$
- id: fix-byte-order-marker
- id: mixed-line-ending
- id: trailing-whitespace
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
hooks:
- id: codespell
args: ["--ignore-words-list", "datas,DNE,enew,HDA,numer,ontop,optionA,Paeth,pathc,inout"]
exclude: ^misc/language.c$