From 28fc893d1c185795f5ca1d27365d6187d3670dc2 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 15 Jan 2023 01:53:11 +0100 Subject: [PATCH] Created the .eslintrc.json --- .eslintrc.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .eslintrc.json diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..415462d --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,11 @@ +{ + "root": true, + "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"], + "parser": "@typescript-eslint/parser", + "parserOptions": { "project": ["./tsconfig.json"] }, + "plugins": ["@typescript-eslint"], + "rules": { + "@typescript-eslint/no-use-before-define": "warn", + "@typescript-eslint/no-unused-vars": "warn" + } +} \ No newline at end of file