From 6d6459091b919dc5be03e8604a7694a749d5aba3 Mon Sep 17 00:00:00 2001 From: MillenniumEarl Date: Thu, 4 Mar 2021 13:07:58 +0100 Subject: [PATCH] Update rules --- .eslintrc | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.eslintrc b/.eslintrc index 0731df5..2d6aadc 100644 --- a/.eslintrc +++ b/.eslintrc @@ -12,10 +12,14 @@ "prettier" ], "rules": { - "no-inferrable-types": 0, - "no-console": 1, // Means warning - "prettier/prettier": 2, // Means error - "no-unused-vars": 0 + "no-inferrable-types": "off", + "no-console": "warn", + "prettier/prettier": "error", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/ban-ts-comment": "warn", + "no-unused-vars": "off", + "no-prototype-builtins": "warn" }, "overrides": [ {