Skip to content

Commit

Permalink
chore(core): add .js style check
Browse files Browse the repository at this point in the history
  • Loading branch information
JingyuanZhang committed Dec 21, 2020
1 parent 90c300f commit b0219a1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
**/*.d.ts
**/*.d.ts
node_modules
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^4.3.0",
"jest": "^26.0.1",
"lerna": "^3.2.1",
Expand All @@ -39,7 +39,10 @@
},
"lint-staged": {
"*.ts": [
"eslint"
"eslint --fix"
],
"packages/**/*.js": [
"eslint --fix"
]
},
"author": "",
Expand Down

0 comments on commit b0219a1

Please sign in to comment.