Switch to pre-commit for rstcheck
[integration/test.git] / .pre-commit-config.yaml
1 ---
2 - repo: git://github.com/guykisel/pre-commit-robotframework-tidy
3   rev: 'master'
4   hooks:
5   - id: robotframework-tidy-wrapper
6     additional_dependencies: ['robotframework==3.1.1']  # Pin due to tidy warning in 3.1.2
7
8 - repo: https://github.com/jorisroovers/gitlint
9   rev: v0.11.0
10   hooks:
11   - id: gitlint
12
13 - repo: local
14   hooks:
15     - id: rstcheck
16       name: rstcheck
17       entry: rstcheck
18       files: '\.rst'
19       language: python
20       additional_dependencies: [rstcheck, sphinx]