Nuxt/.eslintrc.js

74 lines
1.8 KiB
JavaScript
Raw Normal View History

2016-11-07 01:34:58 +00:00
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint',
sourceType: 'module',
ecmaFeatures: {
legacyDecorators: true
}
2016-11-07 01:34:58 +00:00
},
2018-03-16 19:52:03 +00:00
extends: [
'@nuxtjs'
2018-10-24 13:46:06 +00:00
],
globals: {
BigInt: true
},
rules: {
'no-console': 'error',
'no-debugger': 'error',
'no-template-curly-in-string': 0,
quotes: ['error', 'single', { avoidEscape: true, allowTemplateLiterals: true }]
},
2018-10-24 13:46:06 +00:00
overrides: [{
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
}, {
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
}, {
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'],
2018-10-24 13:46:06 +00:00
rules: {
'no-console': ['error', { allow: ['error'] }]
}
}, {
files: ['test/fixtures/*/.nuxt*/**/router.js'],
2018-10-24 13:46:06 +00:00
rules: {
'no-console': ['error', { allow: ['warn'] }]
}
}, {
files: ['test/fixtures/*/.nuxt*/**/*.html'],
2018-10-24 13:46:06 +00:00
rules: {
semi: ['error', 'always', { omitLastInOneLineBlock: true }],
2019-01-06 07:56:59 +00:00
'no-var': 'off'
}
}, {
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
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
}