forked from hove-io/navitia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
36 lines (36 loc) · 1.16 KB
/
.pre-commit-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
repos:
- repo: https://github.com/ambv/black
rev: 22.3.0
hooks:
- id: black
language_version: python3.9
- repo: https://github.com/pycqa/flake8
rev: 3.9.2
hooks:
- id: flake8
language_version: python3.9
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0 # Use the ref you want to point at
hooks:
- id: trailing-whitespace
exclude: ^source/tests/chaos/chaos_loading.sql # Otherwise, Sql commands get corrupted
- id: check-ast
- id: check-merge-conflict
- id: check-yaml
args: [--allow-multiple-documents]
- repo: git@github.com:hove-io/navitia-pre-commit.git # fetch repo through ssh as it is private
rev: master
hooks:
- id: clang-format
verbose: true
exclude: ^source/third_party/
files: \.(c|cc|cxx|cpp|h|hpp|hxx)$
args: [-i]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.800
hooks:
- id: mypy
args: [--ignore-missing-imports, --py2, --follow-imports, skip]
files: source
language_version: python3.9
exclude: /monitor/|/third_party/|/tests/|/sql/|env\.py$|setup\.py$