17 lines
316 B
JavaScript
17 lines
316 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
node: true
|
|
},
|
|
parser: 'vue-eslint-parser',
|
|
parserOptions: {
|
|
parser: '@typescript-eslint/parser'
|
|
},
|
|
extends: ['@nuxtjs/eslint-config-typescript', 'plugin:prettier/recommended'],
|
|
plugins: [],
|
|
rules: {
|
|
'vue/no-v-html': 'off'
|
|
}
|
|
};
|