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
|
|
|
],
|
2020-05-11 08:21:54 +00:00
|
|
|
globals: {
|
|
|
|
BigInt: true
|
2019-01-19 18:14:54 +00:00
|
|
|
},
|
2019-07-27 21:30:50 +00:00
|
|
|
rules: {
|
|
|
|
'no-console': 'error',
|
2019-11-27 19:51:48 +00:00
|
|
|
'no-debugger': 'error',
|
2020-05-18 08:21:15 +00:00
|
|
|
'no-template-curly-in-string': 0,
|
2020-06-30 18:07:23 +00:00
|
|
|
quotes: ['error', 'single', { avoidEscape: true, allowTemplateLiterals: true }],
|
|
|
|
// https://github.com/babel/babel-eslint/issues/799
|
|
|
|
'template-curly-spacing': 0,
|
|
|
|
indent: ['error', 2, { SwitchCase: 1, ignoredNodes: ['TemplateLiteral'] }]
|
2019-07-27 21:30:50 +00:00
|
|
|
},
|
2018-10-24 13:46:06 +00:00
|
|
|
overrides: [{
|
2020-05-11 08:21:54 +00:00
|
|
|
files: ['test/fixtures/*/.nuxt*/**'],
|
2018-10-24 13:46:06 +00:00
|
|
|
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/**',
|
2020-05-11 08:21:54 +00:00
|
|
|
'examples/with-vux/**'
|
2018-11-24 18:49:19 +00:00
|
|
|
],
|
|
|
|
rules: {
|
|
|
|
'vue/component-name-in-template-casing': ['warn', 'kebab-case']
|
|
|
|
}
|
2018-10-24 13:46:06 +00:00
|
|
|
}, {
|
2020-05-11 08:21:54 +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
|
|
|
}
|
|
|
|
}, {
|
2020-05-11 08:21:54 +00:00
|
|
|
files: ['test/fixtures/*/.nuxt*/**/client.js'],
|
2018-10-24 13:46:06 +00:00
|
|
|
rules: {
|
|
|
|
'no-console': ['error', { allow: ['error'] }]
|
|
|
|
}
|
|
|
|
}, {
|
2020-05-11 08:21:54 +00:00
|
|
|
files: ['test/fixtures/*/.nuxt*/**/router.js'],
|
2018-10-24 13:46:06 +00:00
|
|
|
rules: {
|
|
|
|
'no-console': ['error', { allow: ['warn'] }]
|
|
|
|
}
|
|
|
|
}, {
|
2020-05-11 08:21:54 +00:00
|
|
|
files: ['test/fixtures/*/.nuxt*/**/*.html'],
|
2018-10-24 13:46:06 +00:00
|
|
|
rules: {
|
2020-05-11 08:21:54 +00:00
|
|
|
semi: ['error', 'always', { omitLastInOneLineBlock: true }],
|
2019-01-06 07:56:59 +00:00
|
|
|
'no-var': 'off'
|
|
|
|
}
|
|
|
|
}, {
|
2020-05-11 08:21:54 +00:00
|
|
|
files: ['test/fixtures/*/.nuxt*/**/nuxt-error.vue'],
|
2019-01-06 07:56:59 +00:00
|
|
|
rules: {
|
|
|
|
'vue/singleline-html-element-content-newline': 'off'
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
// might be removed in the future, see https://github.com/standard/eslint-plugin-standard/issues/27
|
2020-05-11 08:21:54 +00:00
|
|
|
files: ['test/fixtures/*/.nuxt*/**/nuxt-link.client.js'],
|
2019-01-06 07:56:59 +00:00
|
|
|
rules: {
|
|
|
|
'standard/no-callback-literal': 'off'
|
2018-10-24 13:46:06 +00:00
|
|
|
}
|
|
|
|
}]
|
2016-11-07 01:34:58 +00:00
|
|
|
}
|