Restore forked ipaddr library
[integration/test.git] / .pre-commit-config.yaml
1 ---
2 - repo: https://github.com/pre-commit/pre-commit-hooks
3   rev: v2.4.0  # Use the ref you want to point at
4   hooks:
5     - id: flake8
6       language_version: python3
7       additional_dependencies: ['flake8~=3.5.0']
8     - id: trailing-whitespace
9
10 - repo: https://github.com/pre-commit/mirrors-autopep8
11   rev: v1.4.4
12   hooks:
13     - id: autopep8
14
15 - repo: https://github.com/guykisel/pre-commit-robotframework-tidy
16   rev: 178d2190fa733d8f4d3f72fed9db6e75a9f65d35
17   hooks:
18   - id: robotframework-tidy-wrapper
19     additional_dependencies: ['robotframework==3.2a1']  # Pin due to tidy warning in 3.1.2
20
21 - repo: https://github.com/jorisroovers/gitlint
22   rev: v0.11.0
23   hooks:
24   - id: gitlint
25
26 - repo: local
27   hooks:
28     - id: rstcheck
29       name: rstcheck
30       entry: rstcheck
31       files: '\.rst'
32       language: python
33       additional_dependencies: [rstcheck, sphinx]