I am attempting to establish a universal directive "max-classes-per-file" within the eslintrc.json
file in order to disable the ESLint error indicating "File has too many classes".
Although I can successfully define the rule directly in the file, my goal is to apply it globally.
It is possible that my rule definition is incorrect since it is not affecting my file as expected.
This is how I have defined it:
...
rules: {
'max-classes-per-file': 'off',
}