Which is valid yaml. In case we want to make settings for json formatting in .clang-format.
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
exclude: ^(cmake/ECM|cmake/KDAB/)
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v3.2.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-added-large-files
|
|
- id: check-case-conflict
|
|
- id: check-yaml
|
|
args: [--allow-multiple-documents]
|
|
- id: check-json
|
|
- repo: https://github.com/pre-commit/mirrors-clang-format
|
|
rev: v14.0.0
|
|
hooks:
|
|
- id: clang-format
|
|
- repo: https://github.com/PyCQA/pylint
|
|
rev: v2.12.2
|
|
hooks:
|
|
- id: pylint
|
|
exclude: ^(.cmake-format.py|conan/conanfile.py)
|
|
additional_dependencies: ["PySide2", "PySide6"]
|
|
- repo: https://github.com/pre-commit/mirrors-autopep8
|
|
rev: v1.6.0
|
|
hooks:
|
|
- id: autopep8
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.1.0
|
|
hooks:
|
|
- id: codespell
|
|
- repo: https://github.com/cheshirekow/cmake-format-precommit
|
|
rev: v0.6.13
|
|
hooks:
|
|
- id: cmake-lint
|
|
exclude: (.py.cmake|Doxyfile.cmake)
|
|
- id: cmake-format
|
|
exclude: (.py.cmake|Doxyfile.cmake)
|