summaryrefslogtreecommitdiffstats
path: root/.pre-commit-config.yaml
blob: 7a6f550faed75639cdc7029e763eda3ae8ce4c47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
repos:
    - repo: local
      hooks:
          - id: black
            name: black
            language: system
            entry: python3 -m black
            types: [python]
            files: ^api/
          - id: flake8
            name: flake8
            language: system
            entry: flake8
            types: [python]
            files: ^api/
          - id: jslint
            name: jslint
            language: system
            entry: yarn lint
            types: [vue, javascript]
            files: ^front/