19 lines
321 B
JavaScript
19 lines
321 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
browser: true,
|
||
|
node: true,
|
||
|
},
|
||
|
extends: [
|
||
|
'@nuxtjs/eslint-config-typescript',
|
||
|
'plugin:nuxt/recommended',
|
||
|
'prettier',
|
||
|
],
|
||
|
plugins: [],
|
||
|
// add your custom rules here
|
||
|
rules: {
|
||
|
'no-console': 'off',
|
||
|
"vue/multi-word-component-names": "off"
|
||
|
},
|
||
|
}
|