Currently, I am facing an issue where I need a specific class to disable the max-classes-per-file restriction.
I attempted to add the rule
/* tslint:disable:max-classes-per-file: */
to the beginning of the file, but I still received the warning.
Even after including
"exclude": ["src/modules/Utils/Utils.tsx"]
in my tsconfig.json, the problem persists.
I am continuously encountering the following error:
web_1 | /usr/app/web/src/modules/Utils/Utils.tsx
web_1 | ERROR in /usr/app/web/src/modules/Utils/Utils.tsx(19,1):
web_1 | max-classes-per-file: A maximum of 1 class per file is allowed.
Is there something that I am overlooking?