forked from hove-io/navitia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
32 lines (32 loc) · 1014 Bytes
/
.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
repos:
- repo: https://github.com/ambv/black
rev: 18.9b0
hooks:
- id: black
language_version: python3.6
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v1.4.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
- id: flake8
language_version: python2.7
- repo: https://github.com/CanalTP/navitia-pre-commit
rev: master
hooks:
- id: clang-format-6.0
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.670
hooks:
- id: mypy
args: [--ignore-missing-imports, --py2]
files: source
language_version: python3
exclude: /monitor/|/third_party/|/tests/|/sql/|env\.py$|setup\.py$