mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
45 lines
1004 B
YAML
45 lines
1004 B
YAML
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.9
|
|
hooks:
|
|
- id: remove-tabs
|
|
|
|
- repo: https://gitlab.com/pycqa/flake8
|
|
rev: 3.8.3
|
|
hooks:
|
|
- id: flake8
|
|
additional_dependencies: [flake8-bugbear, pep8-naming]
|
|
exclude: ^(docs/.*|tools/.*)$
|
|
|
|
- repo: https://github.com/cheshirekow/cmake-format-precommit
|
|
rev: v0.6.11
|
|
hooks:
|
|
- id: cmake-format
|
|
additional_dependencies: [pyyaml]
|
|
types: [file]
|
|
files: (\.cmake|CMakeLists.txt)(.in)?$
|
|
|
|
- repo: local
|
|
hooks:
|
|
- id: check-style
|
|
name: Classic check-style
|
|
language: system
|
|
types:
|
|
- c++
|
|
entry: ./tools/check-style.sh
|