mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-25 09:16:15 -04:00
chore: first commit
This commit is contained in:
commit
64c92a661c
37 changed files with 13458 additions and 0 deletions
19
.eslintrc.cjs
Normal file
19
.eslintrc.cjs
Normal file
|
@ -0,0 +1,19 @@
|
|||
/* 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'],
|
||||
},
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue