File tree 2 files changed +12
-5
lines changed
2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 1
1
repos :
2
2
- repo : local
3
3
hooks :
4
+ - id : lint-ts
5
+ name : Lint typescript code
6
+ files : \.ts$
7
+ language : system
8
+ entry : npm run lint -- --fix
4
9
- id : compile-ts
5
10
name : Compile typescript
6
11
files : \.[tj]s$
7
12
language : system
8
13
entry : npm run build
9
14
pass_filenames : false
10
- - id : lint-ts
11
- name : Lint typescript code
12
- files : \.ts$
13
- language : system
14
- entry : npm run lint -- --fix
15
15
- id : pr-checks-sync
16
16
name : Synchronize PR check workflows
17
17
files : ^.github/workflows/__.*\.yml$|^pr-checks
Original file line number Diff line number Diff line change
1
+ # Perform all working copy cleanup operations
2
+ all : lint sync
3
+
4
+ # Lint source typescript
5
+ lint :
6
+ npm run lint -- --fix
7
+
1
8
# Sync generated files (javascript and PR checks)
2
9
sync : build update-pr-checks
3
10
You can’t perform that action at this time.
0 commit comments