Remove robot-tidy from pre-commit
[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/jorisroovers/gitlint
16   rev: v0.11.0
17   hooks:
18   - id: gitlint
19
20 - repo: local
21   hooks:
22     - id: rstcheck
23       name: rstcheck
24       entry: rstcheck
25       files: '\.rst'
26       language: python
27       additional_dependencies: [rstcheck, sphinx]