mirror of
https://github.com/CorentinTh/it-tools.git
synced 2024-11-10 17:35:48 +08:00
19 lines
487 B
JavaScript
19 lines
487 B
JavaScript
/* eslint-env node */
|
|
require('@rushstack/eslint-patch/modern-module-resolution');
|
|
|
|
module.exports = {
|
|
root: true,
|
|
extends: ['plugin:vue/vue3-essential', 'eslint:recommended', '@vue/eslint-config-typescript/recommended'],
|
|
env: {
|
|
'vue/setup-compiler-macros': true,
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['cypress/integration/**.spec.{js,ts,jsx,tsx}'],
|
|
extends: ['plugin:cypress/recommended'],
|
|
},
|
|
],
|
|
rules: {
|
|
'vue/multi-word-component-names': ['off'],
|
|
},
|
|
};
|