mirror of
https://github.com/CorentinTh/it-tools.git
synced 2024-11-15 13:44:41 +08:00
21 lines
503 B
JavaScript
21 lines
503 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',
|
|
'plugin:vue/vue3-recommended',
|
|
'@vue/eslint-config-typescript/recommended',
|
|
'@vue/eslint-config-prettier',
|
|
],
|
|
env: {
|
|
'vue/setup-compiler-macros': true,
|
|
},
|
|
rules: {
|
|
'vue/multi-word-component-names': ['off'],
|
|
'prettier/prettier': ['error'],
|
|
},
|
|
};
|