Start a new simple java project.
Create a new class:
/**
* @author amita
*/
public class MyClass {
}
Go to the end of the first line, and press ENTER. I am expecting a newline with a leading asterisk. I get that, but also an unwanted trailing asterisk:*
/**
* *
* @author amita
*/
public class MyClass {
}
This behaviour has nothing to do with SonarLint, if you disable the plugin you should still see the same. It’s probably something that is applied by the IDE. Maybe there is a configuration in settings to avoid that ?