Update docs conf.yaml version to Sulfur
[transportpce.git] / .pre-commit-config.yaml
1 ---
2 repos:
3   - repo: https://github.com/pre-commit/pre-commit-hooks
4     rev: v4.0.1
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.16.0
12     hooks:
13       - id: gitlint
14         stages: [commit-msg]
15
16   - repo: https://github.com/Lucas-C/pre-commit-hooks
17     rev: v1.1.10
18     hooks:
19       - id: remove-tabs
20         stages: [commit]
21         exclude: '^(.git/|docs/make.bat|docs/Makefile|ordmodels/)'
22
23   - repo: https://github.com/pre-commit/mirrors-autopep8
24     rev: v1.5.7
25     hooks:
26       - id: autopep8
27         args: ['--in-place', '--max-line-length=120']
28