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