Skip to content

Commit 78eff64

Browse files
author
Hampton Paulk
committedFeb 7, 2018
subprojects 1 and 2
1 parent 8d9c4ef commit 78eff64

30 files changed

+1398
-284
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ yarn-error.log*
77
/test/unit/coverage/
88
/test/e2e/reports/
99
selenium-debug.log
10+
karma-result.json
1011

1112
# Editor directories and files
1213
.idea

‎.jshintrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"esversion": 6
3+
}

‎build/webpack.base.conf.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ function resolve (dir) {
99
}
1010

1111
const createLintingRule = () => ({
12-
test: /\.(js|vue)$/,
13-
loader: 'eslint-loader',
14-
enforce: 'pre',
15-
include: [resolve('src'), resolve('test')],
16-
options: {
17-
formatter: require('eslint-friendly-formatter'),
18-
emitWarning: !config.dev.showEslintErrorsInOverlay
19-
}
12+
// test: /\.(js|vue)$/,
13+
// loader: 'eslint-loader',
14+
// enforce: 'pre',
15+
// include: [resolve('src'), resolve('test')],
16+
// options: {
17+
// formatter: require('eslint-friendly-formatter'),
18+
// emitWarning: !config.dev.showEslintErrorsInOverlay
19+
// }
2020
})
2121

2222
module.exports = {

0 commit comments

Comments
 (0)
Please sign in to comment.