You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also the ; is removed when using the auto format option; however then it is a compile error since the ; is required. So for enums that contain NO entries but variables or other statements the ; is required.
The text was updated successfully, but these errors were encountered:
I store my Feature Flags in my enums. After a while I purge them when I've activated them and they are working fine. And it just happened to be that right now I don't have any Feature Flags but I want to keep my logic around them (computed properties).
The following gets flagged by the
no-semi
rule:Also the
;
is removed when using the auto format option; however then it is a compile error since the;
is required. So for enums that contain NO entries but variables or other statements the;
is required.The text was updated successfully, but these errors were encountered: