fix: missing comma

This commit is contained in:
Haoqun Jiang
2018-10-11 19:57:49 +08:00
parent 85b10896b3
commit 4e90afe189
2 changed files with 6 additions and 2 deletions

View File

@@ -6,7 +6,11 @@ test('should work', async () => {
const project = await create('e2e-cypress', {
plugins: {
'@vue/cli-plugin-babel': {},
'@vue/cli-plugin-e2e-cypress': {}
'@vue/cli-plugin-e2e-cypress': {},
'@vue/cli-plugin-eslint': {
config: 'airbnb',
lintOn: 'save'
}
}
})

View File

@@ -1,5 +1,5 @@
// https://docs.cypress.io/guides/guides/plugins-guide.html
/* eslint-disable import/no-extraneous-dependencies global-require */
/* eslint-disable import/no-extraneous-dependencies, global-require */
const webpack = require('@cypress/webpack-preprocessor')
module.exports = (on, config) => {