diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 37e2524..577950c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -11,6 +11,7 @@ repos: - id: trailing-whitespace - id: check-merge-conflict - id: check-ast + - id: check-byte-order-marker - repo: https://github.com/fsfe/reuse-tool rev: v2.1.0 hooks: @@ -29,4 +30,16 @@ repos: hooks: - id: clang-format - id: clang-tidy +- repo: https://github.com/editorconfig-checker/editorconfig-checker.python + rev: '2.7.2' + hooks: + - id: editorconfig-checker + alias: ec + stages: [commit] +repos: +- repo: https://github.com/compilerla/conventional-pre-commit + rev: v2.4.0 + hooks: + - id: conventional-pre-commit + stages: [commit-msg] ...