summaryrefslogtreecommitdiff
path: root/.pre-commit-config.yaml
blob: 559e626663adf56186f9f3985ae94ee11255d5c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
fail_fast: true
repos:
- repo: local
  hooks:
  - id: format
    name: Format
    stages: [commit]
    language: system
    entry: pipenv run format
    types: [python]
  - id: lint
    name: Lint
    stages: [commit]
    language: system
    entry: pipenv run lint
    types: [python]
  - id: test
    name: Test
    stages: [commit]
    language: system
    entry: pipenv run test
    types: [python]
    pass_filenames: false