From b0a300cec8705d03c4179688ff8d7e5048264f59 Mon Sep 17 00:00:00 2001 From: Filip Maj Date: Mon, 9 Aug 2021 15:34:57 -0400 Subject: [PATCH] Disable max-classes-per-file rule. --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index 2d63ae521..076c97a47 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -92,6 +92,7 @@ module.exports = { // This level of this configuration contains rules which apply only to TypeScript. It also contains rules that // are meant to override options or disable rules in the base configurations (there are no more base // configurations in the subsequent overrides). + 'max-classes-per-file': 'off', // Disallow invocations of require(). This will help make imports more consistent and ensures a smoother // transition to the best future syntax. And since this rule affects TypeScript, which is compiled, there's