Skip to content
This repository was archived by the owner on Dec 31, 2024. It is now read-only.

Commit c8486cf

Browse files
committed
refactor(lint): fix lint errors
1 parent 27ba3ee commit c8486cf

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

config/sauce.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var pack = require('../package.json')
22
var sauceConfig = {
33
testName: pack.name + ' unit tests',
44
recordScreenshots: false,
5-
build: process.env.TRAVIS_JOB_ID || Date.now(),
5+
build: process.env.TRAVIS_JOB_ID || Date.now()
66
}
77

88
/**
@@ -25,23 +25,23 @@ var batches = [
2525
},
2626
sl_mac_safari: {
2727
base: 'SauceLabs',
28-
browserName: "safari",
29-
platform: "OS X 10.10"
28+
browserName: 'safari',
29+
platform: 'OS X 10.10'
3030
}
3131
},
3232
// ie family
3333
{
3434
sl_ie_9: {
3535
base: 'SauceLabs',
36-
browserName: "internet explorer",
37-
platform: "Windows 7",
38-
version: "9"
36+
browserName: 'internet explorer',
37+
platform: 'Windows 7',
38+
version: '9'
3939
},
4040
sl_ie_10: {
4141
base: 'SauceLabs',
42-
browserName: "internet explorer",
43-
platform: "Windows 8",
44-
version: "10"
42+
browserName: 'internet explorer',
43+
platform: 'Windows 8',
44+
version: '10'
4545
},
4646
sl_ie_11: {
4747
base: 'SauceLabs',

config/webpack.e2e.conf.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
var webpack = require('webpack')
22

33
module.exports = {
4-
entry: './test/e2e/index.js'/*{
5-
app: ['webpack/hot/dev-server', './test/e2e/index.js']
6-
}*/,
4+
entry: './test/e2e/index.js',
75
output: {
86
path: './test/e2e',
97
filename: 'e2e.js',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"dev": "webpack-dev-server --quiet --config config/webpack.test.conf.js",
8585
"e2e": "webpack-dev-server --quiet --config config/webpack.e2e.conf.js & mocha -t 20000 --compilers js:espower-babel/guess test/e2e/test.js && kill $! || (kill $! && exit 1)",
8686
"ie": "VUE_I18N_TYPE=sauce SAUCE=batch2 karma start config/karma.conf.js",
87-
"lint": "eslint src test",
87+
"lint": "eslint src test config",
8888
"mobile": "VUE_I18N_TYPE=sauce SAUCE=batch3 karma start config/karma.conf.js",
8989
"sauce": "npm run coolkids && npm run ie && npm run mobile",
9090
"test": "npm run ci",

0 commit comments

Comments
 (0)