From d4f39b362b32978b81d4d25c9d851e61f05d2340 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sat, 20 Jul 2024 12:29:30 +0200 Subject: [PATCH] Create eslintrc.json --- .eslintrc.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .eslintrc.json diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..7fc37e3 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,13 @@ +{ + "root": true, + "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"], + "parser": "@typescript-eslint/parser", + "parserOptions": { "project": ["./tsconfig.json"] }, + "plugins": ["@typescript-eslint"], + "rules": { + "@typescript-eslint/no-explicit-any": 0, + "@typescript-eslint/no-use-before-define": "warn", + "@typescript-eslint/no-unused-vars": "warn", + "@typescript-eslint/quotes": ["warn", "double", {"allowTemplateLiterals": true}] + } +} \ No newline at end of file