From 1008066de0ea5bc27dc92879b960af582fa894f1 Mon Sep 17 00:00:00 2001 From: Rafael Araujo Lehmkuhl Date: Tue, 5 Nov 2024 15:22:56 -0300 Subject: [PATCH] eslint: Disable `no-explicit-any` rule Sometimes anything is something. --- .eslintrc.cjs | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 99b20529a..ca66206e4 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -43,6 +43,7 @@ module.exports = { 'max-len': ['error', { code: 180, ignoreUrls: true, ignoreComments: true }], 'no-alert': 'off', 'no-console': 'off', + 'no-explicit-any': 'off', 'no-continue': 'off', // modified https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js#L339 // In our opinion, readability comes first and ForOF statements are more readable,