repos: - repo: https://github.com/Lucas-C/pre-commit-hooks.git sha: v1.0.1 hooks: - id: remove-crlf files: (src).*\.(md|py|mm|swift|java|c|cc|cxx|cpp|cu|h|hpp|hxx)$ - id: remove-tabs files: (src).*\.(md|py|mm|swift|java|c|cc|cxx|cpp|cu|h|hpp|hxx)$ - repo: https://github.com/pre-commit/pre-commit-hooks sha: 5bf6c09bfa1297d3692cadd621ef95f1284e33c0 hooks: - id: check-added-large-files - id: check-merge-conflict - id: check-symlinks - id: detect-private-key files: (?!.*tar.gz)^.*$ - id: end-of-file-fixer files: (src).*\.(md|py|mm|swift|java|c|cc|cxx|cpp|cu|h|hpp|hxx)$ - id: trailing-whitespace files: (src).*\.(md|py|mm|swift|java|c|cc|cxx|cpp|cu|h|hpp|hxx)$ - repo: local hooks: - id: clang-format name: clang-format description: Format files with ClangFormat. entry: bash ./tools/pre-commit.hooks/.clang-format.hook -i language: system files: (src).*\.(c|cc|cxx|cpp|h|hpp|hxx)$ # #- repo: local # hooks: # - id: clang-tidy # name: clang-tidy # description: Check C++ code style using clang-tidy. # entry: bash ./tools/pre-commit.hooks/.clang-tidy.hook -i # language: system # files: (src).*\.(c|cc|cxx|cpp|h|hpp|hxx)$ - repo: local hooks: - id: cpplint name: cpplint description: Check C++ code style using cpplint. entry: bash ./tools/pre-commit.hooks/.cpplint.hook language: system files: (src).*\.(c|cc|cxx|cpp|cu|h|hpp|hxx)$ exclude: (?!.*third_party)^.*$ | (?!.*book)^.*$i | *\.pb\.cpp #- repo: local # hooks: # - id: copyright_checker # name: copyright_checker # entry: python ./tools/pre-commit.hooks/.copyright.hook # language: system # files: (src).*\.(c|cc|cxx|cpp|cu|h|hpp|hxx|proto|py)$ # exclude: (?!.*third_party)^.*$ | (?!.*book)^.*$