aboutsummaryrefslogtreecommitdiffstats
path: root/.pre-commit-config.yaml
blob: 4ade03e8f26912a8ef570d2a43829efbfa9603db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
repos:
-   repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v4.4.0
    hooks:
    -   id: check-yaml
    -   id: end-of-file-fixer
        exclude: tests/report/expects
    -   id: trailing-whitespace
        exclude: tests/report/expects
-   repo: https://github.com/PyCQA/isort
    rev: 5.12.0
    hooks:
    -   id: isort
-   repo: https://github.com/codespell-project/codespell
    rev: v2.2.5
    hooks:
    -   id: codespell
        args: ['-I', '.codespell_ignore']