23 lines
508 B
JavaScript
23 lines
508 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
jquery: true
|
|
},
|
|
parserOptions: {
|
|
parser: '@babel/eslint-parser',
|
|
requireConfigFile: false
|
|
},
|
|
extends: ['@nuxtjs', 'plugin:nuxt/recommended', 'prettier'],
|
|
plugins: [],
|
|
// add your custom rules here
|
|
rules: {
|
|
'no-console': 'off',
|
|
camelcase: 'off',
|
|
'no-async-promise-executor': 'off',
|
|
'vue/no-v-html': 'off',
|
|
'vue/prop-name-casing': 'off'
|
|
}
|
|
}
|
|
|