✅ This rule is included in the ts logicalStrict presets.
Classes that contain only static members are essentially being used as namespaces.
In JavaScript and TypeScript, objects and module-level exports are more idiomatic and straightforward.
This rule reports on any class that only contains static members.
If your codebase uses classes as namespaces for organizing related static utilities, and you don’t mind the extra complexity of classes, you may want to disable this rule.
Some frameworks or patterns may also require static-only classes for specific use cases.
You might consider using Flint disable comments and/or configuration file disables for those specific situations instead of completely disabling this rule.