Turn ServiceDataStoreOperationsImpl into Component
[transportpce.git] / .pre-commit-config.yaml
1 ---
2 repos:
3   - repo: https://github.com/pre-commit/pre-commit-hooks
4     rev: v4.3.0
5     hooks:
6       - id: trailing-whitespace
7         exclude: '^ordmodels/'
8         # ordmodels trailing blanks shall preferably be fixed in OpenROADM upstream repo
9
10   - repo: https://github.com/jorisroovers/gitlint
11     rev: v0.18.0
12     hooks:
13       - id: gitlint
14         stages: [commit-msg]
15       - id: gitlint-ci
16         stages: [manual]
17
18   - repo: https://github.com/Lucas-C/pre-commit-hooks
19     rev: v1.3.1
20     hooks:
21       - id: remove-tabs
22         stages: [commit]
23         exclude: '^(.git/|docs/make.bat|docs/Makefile|ordmodels/)'
24
25   - repo: https://github.com/pre-commit/mirrors-autopep8
26     rev: v2.0.0
27     hooks:
28       - id: autopep8
29         args: ['--in-place', '--max-line-length=120']
30