File tree 4 files changed +192
-36
lines changed
4 files changed +192
-36
lines changed Original file line number Diff line number Diff line change 1
- #! /bin/sh
2
- . " $( dirname " $0 " ) /_/husky.sh"
3
-
4
1
npx --no-install commitlint --edit ""
Original file line number Diff line number Diff line change 1
- #! /usr/bin/env sh
2
- . " $( dirname -- " $0 " ) /_/husky.sh"
3
-
4
- # contracts
5
- pushd packages/contracts
6
- npx --no-install lint-staged
7
- popd
8
-
9
- # subgraph service
10
- pushd packages/subgraph-service
11
- npx --no-install lint-staged
12
- popd
13
-
14
- # data-edge
15
- pushd packages/data-edge
16
- npx --no-install lint-staged
17
- popd
18
-
19
- # graph horizon
20
- pushd packages/horizon
21
- npx --no-install lint-staged
22
- popd
1
+ (cd packages/contracts && npx --no-install lint-staged)
2
+ (cd packages/subgraph-service && npx --no-install lint-staged)
3
+ (cd packages/data-edge && npx --no-install lint-staged)
4
+ (cd packages/horizon && npx --no-install lint-staged)
Original file line number Diff line number Diff line change 30
30
"@changesets/cli" : " ^2.27.1" ,
31
31
"@commitlint/cli" : " ^18.4.3" ,
32
32
"@commitlint/config-conventional" : " ^18.4.3" ,
33
- "husky" : " ^8.0.3"
33
+ "husky" : " ^9.1.7" ,
34
+ "lint-staged" : " ^15.5.0"
34
35
}
35
36
}
You can’t perform that action at this time.
0 commit comments