mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-02-25 16:06:26 +08:00
13 lines
376 B
JavaScript
13 lines
376 B
JavaScript
/* eslint-env node */
|
|
require('@rushstack/eslint-patch/modern-module-resolution');
|
|
|
|
module.exports = {
|
|
root: true,
|
|
extends: ['plugin:vue/vue3-essential', 'eslint:recommended', 'plugin:vue/vue3-recommended', '@vue/eslint-config-typescript/recommended'],
|
|
env: {
|
|
'vue/setup-compiler-macros': true,
|
|
},
|
|
rules: {
|
|
'vue/multi-word-component-names': ['off'],
|
|
},
|
|
};
|