mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
75a29c8b13
[release]
73 lines
1.8 KiB
JavaScript
73 lines
1.8 KiB
JavaScript
module.exports = {
|
|
root: true,
|
|
parserOptions: {
|
|
parser: 'babel-eslint',
|
|
sourceType: 'module',
|
|
ecmaFeatures: {
|
|
legacyDecorators: true
|
|
}
|
|
},
|
|
extends: [
|
|
'@nuxtjs'
|
|
],
|
|
"globals": {
|
|
"BigInt": true
|
|
},
|
|
rules: {
|
|
'no-console': 'error',
|
|
'no-debugger': 'error',
|
|
quotes: ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": true }]
|
|
},
|
|
overrides: [{
|
|
files: [ 'test/fixtures/*/.nuxt*/**' ],
|
|
rules: {
|
|
'vue/name-property-casing': 'error'
|
|
}
|
|
}, {
|
|
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']
|
|
}
|
|
}, {
|
|
files: [ 'test/fixtures/*/.nuxt*/**/+(App|index|server|client|nuxt).js' ],
|
|
rules: {
|
|
'import/order': 'off'
|
|
}
|
|
}, {
|
|
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 }],
|
|
'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'
|
|
}
|
|
}]
|
|
}
|