summaryrefslogtreecommitdiff
path: root/.pre-commit-config.yaml
blob: 9ebc1323a6423d55453d58af4eb70dae66f80861 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
-   repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v4.4.0
    hooks:
    -   id: check-added-large-files
    -   id: check-yaml
    -   id: end-of-file-fixer
    -   id: file-contents-sorter
        files: ^(\.gitignore|po/LINGUAS)$
    -   id: trailing-whitespace
        exclude: ^(ChangeLog-2013|patches/.*)$
        args: [--chars, " \t\n\r\v"]
-   repo: https://github.com/shellcheck-py/shellcheck-py
    rev: v0.9.0.5
    hooks:
    -   id: shellcheck
        exclude: ^bootstrap$