Initialize dev

This commit is contained in:
Joururi
2023-04-25 11:28:02 +02:00
committed by GitHub
commit 77207ff039
22 changed files with 4806 additions and 0 deletions

26
.eslintrc.cjs Normal file
View File

@@ -0,0 +1,26 @@
/* 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",
"@vue/eslint-config-prettier",
],
env: {
browser: true,
amd: true,
node: true,
},
rules: {
"prettier/prettier": [
"error",
{
endOfLine: "auto",
},
],
"vue/multi-word-component-names": "off",
},
};