From e02442e1c6d2621a3e43080a48e3a2b0a0fe3a21 Mon Sep 17 00:00:00 2001 From: ioay Date: Wed, 10 Jan 2024 10:39:16 +0100 Subject: [PATCH] Added comments to eslint config --- dapp/.eslintrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dapp/.eslintrc b/dapp/.eslintrc index a1c6935a5..b8736f5e6 100644 --- a/dapp/.eslintrc +++ b/dapp/.eslintrc @@ -16,8 +16,12 @@ { "allowRequiredDefaults": true } ], "react/require-default-props": [0], + // Regarding the fact we are using now: @thesis-co/eslint-config": "github:thesis/eslint-config#7b9bc8c" + // Promise-returning function provided to attribute where a void return was expected. + // Avoid referencing unbound methods which may cause unintentional scoping of `this`, used in theme files. "@typescript-eslint/no-misused-promises": "off", "@typescript-eslint/unbound-method": "off", + // Computed name [status] resolves to any value (related to external chakra-ui package) "@typescript-eslint/no-unsafe-member-access": "off" } }