aboutsummaryrefslogtreecommitdiffstats
path: root/.pre-commit-config.yaml
blob: 8603578684d6db492dddf1e47ff7b7e614199f57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
repos:
-   repo: local
    hooks:
    -   id: flake8
        name: Flake8
        description: This hook runs flake8 within our project's pipenv environment.
        entry: pipenv run lint
        language: python
        types: [python]
        require_serial: true