-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
53 lines (52 loc) · 1.7 KB
/
.pre-commit-config.yaml
File metadata and controls
53 lines (52 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
exclude: ^conan_recipes/
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-yaml
args: [--allow-multiple-documents]
- id: end-of-file-fixer
exclude: ^mage/cpp/community_detection_module/grappolo/
- id: trailing-whitespace
exclude: ^mage/cpp/community_detection_module/grappolo/
- repo: https://github.com/psf/black
rev: 23.1.0
hooks:
- id: black
exclude: ^conan_recipes/
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
name: isort (python)
args: ["--profile", "black"]
exclude: ^conan_recipes/
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v20.1.7
hooks:
- id: clang-format
exclude: ^mage/cpp/community_detection_module/grappolo/
# - repo: local
# hooks:
# - id: clang-tidy
# name: clang-tidy
# description: Runs clang-tidy and checks for errors
# entry: python ./tools/pre-commit/clang-tidy.py
# language: python
# files: ^src/
# types: [c++, text]
# fail_fast: true
# require_serial: true
# args: [--compile_commands_path=build]
# pass_filenames: false
- repo: local
hooks:
- id: keyword-consistency
name: keyword-consistency
description: Check consistency between lexer tokens, grammar keywords, and stripped constants
entry: python ./tools/pre-commit/check_keyword_consistency.py
language: python
files: ^(src/query/frontend/opencypher/grammar/.*\.g4|src/query/frontend/stripped_lexer_constants\.hpp)$
fail_fast: true
require_serial: true
pass_filenames: false