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
comment-spacings for some reason is triggered not only for // comments but also for /**/ style comments.
Without the ability to disable this behavior this linter is pretty-much unusable when code has a lot of multi-line comments.
The text was updated successfully, but these errors were encountered:
I am using IDE and multi-line comments that contain dots are getting autoformated from /* ... */ to
/*
-->TAB Text.
-->TAB More text.
*/
Also considering some of my code has really big comments within /* ... */, some quotes from Linux kernel for example, it would be nice to have some flag to disable processing /* ... */ style comments entirely.
P.S. Not directly related to this issue but //nolint should be whitelisted by default, can be configured so not a big issue.
comment-spacings
for some reason is triggered not only for//
comments but also for/**/
style comments.Without the ability to disable this behavior this linter is pretty-much unusable when code has a lot of multi-line comments.
The text was updated successfully, but these errors were encountered: