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