Skip to content

Commit 54adc49

Browse files
committed
build: update lint/build system
1 parent d415fb9 commit 54adc49

File tree

5 files changed

+3334
-300
lines changed

5 files changed

+3334
-300
lines changed

.huskyrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"hooks": {
3+
"pre-push": "npm t",
4+
"pre-commit": "lint-staged",
5+
"commit-msg": "commitlint --extends=@commitlint/config-angular -e"
6+
}
7+
}

.lintstagedrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"*.{js,md}": "eslint"
3+
}

.travis.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,5 @@ node_js:
55
- "lts/*"
66
- 10
77

8-
env:
9-
global:
10-
- ISTANBUL_COVERAGE: yes
11-
128
after_success:
13-
- npm i coveralls
14-
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && echo "Coverage data was sent to coveralls!"
9+
- npm run coverage

0 commit comments

Comments
 (0)