2016-11-07 01:34:58 +00:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
parserOptions: {
|
2018-07-12 12:03:50 +00:00
|
|
|
parser: 'babel-eslint',
|
2018-12-15 06:55:08 +00:00
|
|
|
sourceType: 'module',
|
|
|
|
ecmaFeatures: {
|
|
|
|
legacyDecorators: true
|
|
|
|
}
|
2016-11-07 01:34:58 +00:00
|
|
|
},
|
2018-03-16 19:52:03 +00:00
|
|
|
extends: [
|
2018-10-16 22:07:12 +00:00
|
|
|
'@nuxtjs'
|
2018-10-24 13:46:06 +00:00
|
|
|
],
|
2019-01-19 18:14:54 +00:00
|
|
|
"globals": {
|
|
|
|
"BigInt": true
|
|
|
|
},
|
2019-07-27 21:30:50 +00:00
|
|
|
rules: {
|
|
|
|
'no-console': 'error',
|
2019-11-27 19:51:48 +00:00
|
|
|
'no-debugger': 'error',
|
|
|
|
quotes: ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": true }]
|
2019-07-27 21:30:50 +00:00
|
|
|
},
|
2018-10-24 13:46:06 +00:00
|
|
|
overrides: [{
|
|
|
|
files: [ 'test/fixtures/*/.nuxt*/**' ],
|
|
|
|
rules: {
|
2019-01-06 07:56:59 +00:00
|
|
|
'vue/name-property-casing': 'error'
|
2018-10-24 13:46:06 +00:00
|
|
|
}
|
2019-01-06 07:56:59 +00:00
|
|
|
}, {
|
2018-11-24 18:49:19 +00:00
|
|
|
files: [
|
|
|
|
'examples/storybook/**',
|
|
|
|
'examples/with-element-ui/**',
|
|
|
|
'examples/with-museui/**',
|
|
|
|
'examples/with-vue-material/**',
|
|
|
|
'examples/with-vuetify/**',
|
|
|
|
'examples/with-vuikit/**',
|
|
|
|
'examples/with-vux/**',
|
|
|
|
],
|
|
|
|
rules: {
|
|
|
|
'vue/component-name-in-template-casing': ['warn', 'kebab-case']
|
|
|
|
}
|
2018-10-24 13:46:06 +00:00
|
|
|
}, {
|
2019-09-10 09:51:14 +00:00
|
|
|
files: [ 'test/fixtures/*/.nuxt*/**/+(App|index|server|client|nuxt).js' ],
|
2018-10-24 13:46:06 +00:00
|
|
|
rules: {
|
2019-01-06 07:56:59 +00:00
|
|
|
'import/order': 'off'
|
2018-10-24 13:46:06 +00:00
|
|
|
}
|
|
|
|
}, {
|
|
|
|
files: [ 'test/fixtures/*/.nuxt*/**/client.js' ],
|
|
|
|
rules: {
|
|
|
|
'no-console': ['error', { allow: ['error'] }]
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
files: [ 'test/fixtures/*/.nuxt*/**/router.js' ],
|
|
|
|
rules: {
|
|
|
|
'no-console': ['error', { allow: ['warn'] }]
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
files: [ 'test/fixtures/*/.nuxt*/**/*.html' ],
|
|
|
|
rules: {
|
|
|
|
'semi': ['error', 'always', { 'omitLastInOneLineBlock': true }],
|
2019-01-06 07:56:59 +00:00
|
|
|
'no-var': 'off'
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
files: [ 'test/fixtures/*/.nuxt*/**/nuxt-error.vue' ],
|
|
|
|
rules: {
|
|
|
|
'vue/singleline-html-element-content-newline': 'off'
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
// might be removed in the future, see https://github.com/standard/eslint-plugin-standard/issues/27
|
|
|
|
files: [ 'test/fixtures/*/.nuxt*/**/nuxt-link.client.js' ],
|
|
|
|
rules: {
|
|
|
|
'standard/no-callback-literal': 'off'
|
2018-10-24 13:46:06 +00:00
|
|
|
}
|
|
|
|
}]
|
2016-11-07 01:34:58 +00:00
|
|
|
}
|