UNPKG
@agro-tech/rules
Version:
latest (1.0.0)
1.0.0
前端规范
@agro-tech/rules
/
lib
/
husky
/
index.js
10 lines
(7 loc)
•
146 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
tasks
=
(arr) => arr.join(
' && '
);
const
hooks
=
{
'commit-msg'
: tasks([
// 'npm run lint:commit',
]), };
module
.
exports
= hooks;