Update wiki links to the new short URL
[aur.git] / .pre-commit-config.yaml
blob525c7eb84ddbc4d21deaf329cc8c98ac313c8773
1 hooks:
2   - &base
3     language: python
4     types: [python]
5     require_serial: true
6     exclude: ^migrations/versions
7   - &flake8
8     id: flake8
9     name: flake8
10     entry: flake8
11     <<: *base
12   - &isort
13     id: isort
14     name: isort
15     entry: isort
16     <<: *base
18 repos:
19   - repo: local
20     hooks:
21       - <<: *flake8
22       - <<: *isort
23         args: ['--check-only', '--diff']