-
Notifications
You must be signed in to change notification settings - Fork 39
/
.pre-commit-config.yaml
73 lines (70 loc) · 1.89 KB
/
.pre-commit-config.yaml
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: trailing-whitespace
- id: check-yaml
- id: check-added-large-files
- id: check-toml
- id: detect-aws-credentials
args: [--allow-missing-credential]
- id: detect-private-key
- id: check-json
- id: mixed-line-ending
- id: check-merge-conflict
- id: check-executables-have-shebangs
- id: check-symlinks
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: 'v0.0.284'
hooks:
- id: ruff
files: pypgstac\/.*\.py$
args: [--fix, --exit-non-zero-on-fix]
- repo: local
hooks:
- id: dockerbuild
name: dockerbuild
entry: scripts/update
language: script
pass_filenames: false
verbose: true
fail_fast: true
files: Dockerfile$|\.rs$
- id: sql
name: sql
entry: scripts/test
args: [--basicsql, --pgtap]
language: script
pass_filenames: false
verbose: true
fail_fast: true
files: sql\/.*\.sql$
- id: formatting
name: formatting
entry: scripts/test
args: [--formatting]
language: script
pass_filenames: false
verbose: true
fail_fast: true
always_run: true
- id: pypgstac
name: pypgstac
entry: scripts/test
args: [--pypgstac]
language: script
pass_filenames: false
verbose: true
fail_fast: true
files: pypgstac\/.*\.py$
- id: migrations
name: migrations
entry: scripts/test
args: [--migrations]
language: script
pass_filenames: false
verbose: true
fail_fast: true
files: migrations\/.*\.sql$