aboutsummaryrefslogtreecommitdiffstats
path: root/.pre-commit-config.yaml
blob: d7d4b843380fcbb2a1aa1d215f548b17ccb7ae07 (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 flake8
        language: python
        types: [python]
        require_serial: true