Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.8k
Closed
Description
Currentlyclass-name-casing
applies only forclass
andinterface
. It would be nice ( for consistent codebase ) to apply this rule also ontype
. probablyenum
should use this as well.
Maybe it should be extracted to separate rule asclass-name-casing
is too confusing by it's name.
Suggested rule rename/new name (for interface/type/enum) ->types-casing
Expected Result
// LINT ERRORtypeuser={name:stringage:number}
Actual Result
// NO LINT ERROR 🥺typeuser={name:stringage:number}