This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
env: {
|
|
|
|
browser: true,
|
|
|
|
node: true
|
|
|
|
},
|
|
|
|
parserOptions: {
|
|
|
|
parser: 'babel-eslint'
|
|
|
|
},
|
|
|
|
extends: [
|
|
|
|
'@nuxtjs',
|
|
|
|
'prettier',
|
|
|
|
'prettier/vue',
|
|
|
|
'plugin:prettier/recommended',
|
|
|
|
'plugin:nuxt/recommended'
|
|
|
|
],
|
|
|
|
plugins: [
|
|
|
|
'prettier'
|
|
|
|
],
|
|
|
|
}
|