.pre-commit-config.yaml 1.8 KB
Newer Older
Y
Yi Wang 已提交
1
repos:
Y
Yu Yang 已提交
2
-   repo: https://github.com/Lucas-C/pre-commit-hooks.git
Y
Yi Wang 已提交
3
    sha: v1.0.1
Y
Yu Yang 已提交
4 5
    hooks:
    -   id: remove-crlf
L
liaogang 已提交
6
        files: (?!.*third_party)^.*$ | (?!.*book)^.*$
Y
Yu Yang 已提交
7 8
-   repo: https://github.com/PaddlePaddle/mirrors-yapf.git
    sha: 0d79c0c469bab64f7229c9aca2b1186ef47f0e37
Y
Yu Yang 已提交
9
    hooks:
Y
Yi Wang 已提交
10 11
    -   id: yapf
        files: (.*\.(py|bzl)|BUILD|.*\.BUILD|WORKSPACE)$
Y
Yu Yang 已提交
12
-   repo: https://github.com/pre-commit/pre-commit-hooks
Y
Yi Wang 已提交
13
    sha: 5bf6c09bfa1297d3692cadd621ef95f1284e33c0
Y
Yu Yang 已提交
14 15 16 17 18
    hooks:
    -   id: check-added-large-files
    -   id: check-merge-conflict
    -   id: check-symlinks
    -   id: detect-private-key
L
liaogang 已提交
19
        files: (?!.*third_party)^.*$ | (?!.*book)^.*$
Y
Yu Yang 已提交
20
    -   id: end-of-file-fixer
L
test  
liaogang 已提交
21
-   repo: local
Y
Yu Yang 已提交
22
    hooks:
23
    -   id: clang-format-with-version-check
L
test  
liaogang 已提交
24 25
        name: clang-format
        description: Format files with ClangFormat.
26
        entry: bash ./tools/codestyle/clang_format.hook -i
L
test  
liaogang 已提交
27
        language: system
28
        files: \.(c|cc|cxx|cpp|cu|h|hpp|hxx|proto|xpu|kps)$
Y
Yi Wang 已提交
29 30 31 32 33 34 35 36
-   repo: local
    hooks:
    -   id: cpplint-cpp-source
        name: cpplint
        description: Check C++ code style using cpplint.py.
        entry: bash ./tools/codestyle/cpplint_pre_commit.hook
        language: system
        files: \.(c|cc|cxx|cpp|cu|h|hpp|hxx)$
G
gongweibao 已提交
37 38 39 40 41 42 43 44
-   repo: local
    hooks:
    -   id: pylint-doc-string
        name: pylint
        description: Check python docstring style using docstring_checker.
        entry: bash ./tools/codestyle/pylint_pre_commit.hook
        language: system
        files: \.(py)$
D
dzhwinter 已提交
45 46 47 48
-   repo: local
    hooks:
    -   id: copyright_checker
        name: copyright_checker
49
        entry: python ./tools/codestyle/copyright.hook
D
dzhwinter 已提交
50
        language: system
51
        files: \.(c|cc|cxx|cpp|cu|h|hpp|hxx|proto|xpu|kps|py|sh)$
52 53 54 55
        exclude: |
            (?x)^(
                paddle/utils/.*
            )$