You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
838 B
37 lines
838 B
--- |
|
repos: |
|
- repo: https://github.com/pre-commit/pre-commit-hooks |
|
rev: v4.1.0 |
|
hooks: |
|
- id: trailing-whitespace |
|
- id: end-of-file-fixer |
|
- repo: https://github.com/Kuniwak/vint |
|
rev: v0.4a3 |
|
hooks: |
|
- id: vint |
|
exclude: > |
|
(?x)^( |
|
vim/colors/.*\.vim |
|
)$ |
|
- repo: local |
|
hooks: |
|
- id: luacheck |
|
name: Luacheck |
|
entry: luacheck |
|
args: |
|
- --globals |
|
- vim |
|
- -- |
|
language: system |
|
types: [file, lua] |
|
- repo: https://github.com/johnnymorganz/stylua |
|
rev: v0.11.3 |
|
hooks: |
|
- id: stylua |
|
- repo: local |
|
hooks: |
|
- id: sort-json |
|
name: sort json files with jq |
|
language: script |
|
entry: ./scripts/sort-json.sh |
|
files: "(\\.json$|^neovim/packer_snapshots/)"
|
|
|