mirror of
https://github.com/CorentinTh/it-tools.git
synced 2024-11-13 04:34:38 +08:00
20 lines
487 B
JavaScript
20 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'],
|
||
|
},
|
||
|
};
|