-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
45 lines (45 loc) · 1.69 KB
/
.pre-commit-config.yaml
File metadata and controls
45 lines (45 loc) · 1.69 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
repos:
- repo: local
hooks:
- id: yazelix-validate-syntax
name: validate Nushell syntax
entry: nu nushell/scripts/dev/validate_syntax.nu --quiet
language: system
pass_filenames: false
always_run: true
- id: yazelix-validate-readme-version
name: validate generated README surface
entry: nu nushell/scripts/dev/validate_readme_version.nu
language: system
pass_filenames: false
always_run: true
- id: yazelix-validate-upgrade-contract
name: validate upgrade contract
entry: nu nushell/scripts/dev/validate_upgrade_contract.nu
language: system
pass_filenames: false
always_run: true
- id: yazelix-validate-config-surface-contract
name: validate config surface and launch-profile contract
entry: nu nushell/scripts/dev/validate_config_surface_contract.nu
language: system
pass_filenames: false
always_run: true
- id: yazelix-validate-specs
name: validate spec traceability
entry: nu nushell/scripts/dev/validate_specs.nu
language: system
pass_filenames: false
always_run: true
- id: yazelix-validate-default-test-traceability
name: validate default-suite traceability
entry: nu nushell/scripts/dev/validate_default_test_traceability.nu
language: system
pass_filenames: false
always_run: true
- id: yazelix-validate-default-test-count-budget
name: validate default-suite test-count budget
entry: nu nushell/scripts/dev/validate_default_test_count_budget.nu
language: system
pass_filenames: false
always_run: true