21 lines
313 B
JavaScript
21 lines
313 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
browser: true,
|
||
|
node: true
|
||
|
},
|
||
|
parserOptions: {
|
||
|
parser: '@babel/eslint-parser',
|
||
|
requireConfigFile: false
|
||
|
},
|
||
|
extends: [
|
||
|
'@nuxtjs',
|
||
|
'plugin:nuxt/recommended',
|
||
|
'prettier'
|
||
|
],
|
||
|
plugins: [
|
||
|
],
|
||
|
// add your custom rules here
|
||
|
rules: {}
|
||
|
}
|