Skip to content

Commit

Permalink
feat(test): 测试 eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
luoxue committed Dec 23, 2019
1 parent 6ba2389 commit 2a418b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,6 @@
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": false
}
}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
--|--|--
demo | 修改demo | [86da5a4](https://github.com/luoxue-victor/learn_webpack/commit/86da5a4)
gitignore | 增加dist | [d723459](https://github.com/luoxue-victor/learn_webpack/commit/d723459)
husky | 添加 husky | [6ba2389](https://github.com/luoxue-victor/learn_webpack/commit/6ba2389)
lints | 修复lints bug | [c0696ff](https://github.com/luoxue-victor/learn_webpack/commit/c0696ff)
merge | 合并master | [6886aef](https://github.com/luoxue-victor/learn_webpack/commit/6886aef)
react | 重新提交react | [97be6d3](https://github.com/luoxue-victor/learn_webpack/commit/97be6d3)
Expand Down
2 changes: 1 addition & 1 deletion packages/webpack-box/config/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = ({ config, webpackVersion, resolve, options }) => {
output = `${output}/${name}`
entry = options.pages[name].entry
}
const isV5 = parseInt(webpackVersion) >= 5
const isV5 = parseInt(webpackVersion) >= 5;
return () => {
config
// 入口名称
Expand Down

0 comments on commit 2a418b9

Please sign in to comment.