mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
515 B
20 lines
515 B
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
es2021: true,
|
|
},
|
|
extends: ['eslint:recommended', 'plugin:vue/vue3-recommended', 'prettier'],
|
|
ignorePatterns: ['dist/**/*', 'node_modules/**/*'],
|
|
parser: 'vue-eslint-parser',
|
|
// parserOptions: {
|
|
// parser: '@typescript-eslint/parser',
|
|
// // sourceType: 'module',
|
|
// },
|
|
plugins: ['vue', 'prettier'],
|
|
rules: {
|
|
'vue/no-v-html': 'off',
|
|
'vue/multi-word-component-names': 'off',
|
|
'prettier/prettier': ['error'],
|
|
},
|
|
};
|
|
|