src/main/java/cc/analysis/StandaloneSonarLint.java
Rename this class. Open
Open
public class StandaloneSonarLint extends org.sonarlint.cli.analysis.StandaloneSonarLint {
- Read upRead up
- Exclude checks
While it's perfectly legal to give a class the same simple name as a class in another package that it extends or interface it implements, it's confusing and could cause problems in the future.
Noncompliant Code Example
package my.mypackage; public class Foo implements a.b.Foo { // Noncompliant
Compliant Solution
package my.mypackage; public class FooJr implements a.b.Foo {