Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default tseslint.config(
},
rules: {
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-extraneous-class": "warn",
"@typescript-eslint/no-extraneous-class": "off", // Reason: Requires refactoring classes with only static methods.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

It's good to see the reason for disabling this rule. However, consider if refactoring the classes with only static methods is feasible in the near future to re-enable this rule and improve code structure.

"@typescript-eslint/no-unnecessary-condition": "warn",
"@typescript-eslint/restrict-template-expressions": "warn",
},
Expand Down
Loading
Loading