29 lines
498 B
JavaScript
29 lines
498 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
node: true
|
|
},
|
|
parserOptions: {
|
|
parser: 'babel-eslint'
|
|
},
|
|
extends: [
|
|
'@nuxtjs',
|
|
// 'plugin:nuxt/recommended',
|
|
// 'plugin:prettier/recommended',
|
|
// 'prettier',
|
|
// 'prettier/vue'
|
|
],
|
|
plugins: [
|
|
'prettier'
|
|
],
|
|
// add your custom rules here
|
|
rules: {
|
|
'nuxt/no-cjs-in-config': 'off',
|
|
'camelcase': 'off',
|
|
'no-console': 'off',
|
|
'arrow-parens': 'off',
|
|
'import/order': 'off'
|
|
}
|
|
}
|