.pre-commit-config.yaml 854 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
  rev: v3.1.0
  hooks:
  - id: check-added-large-files
  - id: check-case-conflict
  - id: check-merge-conflict
  - id: check-symlinks
  - id: check-yaml
  - id: debug-statements
  - id: end-of-file-fixer
  - id: mixed-line-ending
  - id: requirements-txt-fixer
  - id: trailing-whitespace
  - id: fix-encoding-pragma

- repo: https://github.com/Lucas-C/pre-commit-hooks
  rev: v1.1.7
  hooks:
  - id: remove-tabs
    exclude: (Makefile|debian/rules|.gitmodules)(\.in)?$

- repo: https://gitlab.com/pycqa/flake8
  rev: 3.8.2
  hooks:
  - id: flake8
27
    additional_dependencies: [flake8-bugbear, pep8-naming]
28
    exclude: ^(docs/.*|tools/.*)$
29
30
31
32
33
34
35
36
37

- repo: local
  hooks:
  - id: check-style
    name: Classic check-style
    language: system
    types:
    - c++
    entry: ./tools/check-style.sh