Server: ESLint setup.

This commit is contained in:
baldo 2022-08-23 19:18:02 +02:00
commit 5237db38e0
3 changed files with 515 additions and 15 deletions

11
.eslintrc.cjs Normal file
View file

@ -0,0 +1,11 @@
/* eslint-env node */
require("@rushstack/eslint-patch/modern-module-resolution");
module.exports = {
root: true,
extends: [
"eslint:recommended",
"@vue/eslint-config-typescript/recommended",
"@vue/eslint-config-prettier",
],
};