walkmod-sonar-plugin icon indicating copy to clipboard operation
walkmod-sonar-plugin copied to clipboard

Plugin to automatically fix sonar violations

Results 9 walkmod-sonar-plugin issues
Sort by recently updated
recently updated
newest added

Removal of i++ as by default it should pickup the char next to '\_' and convert it uppercase. But with i++ it skips the given char next to '_' and...

Error visiting a Java source file ``` - org.walkmod.util.location.LocationImpl@76464 795 at org.walkmod.javalang.walkers.DefaultJavaWalker.visit(DefaultJavaWalke r.java:505) at org.walkmod.javalang.walkers.DefaultJavaWalker.visit(DefaultJavaWalke r.java:250) at org.walkmod.javalang.walkers.DefaultJavaWalker.accept(DefaultJavaWalk er.java:91) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl. java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces sorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498)...

enhancement
question

Applying the transformation to a piece of code with a switch condition does not wrap up the whole code inside a case and duplicates the non-wrapped code inside the braces,...

Hi, I am new to walkmod tool. Just tried to execute simple demo on imports cleaner , getting following exception -------------------------------------------------------------------------------- An open source tool to apply code conventions version...

-------- list.isEmpty conditions ------------- list.size() == 0 list.size() = list.size() 1 > list.size() -------- !list.isEmpty conditions ------------- list.size() != 0 list.size() > 0 list.size() >= 1 0 != list.size() 0...

Even if we have proper imports in our code, it’s importing wrong import in case of same class name in diff lib or package

Please refer - [https://github.com/walkmod/walkmod-core/issues/71](url)

UseCollectionIsEmpty violation fix inverts condition from if( list1.size() > 0 ){ ... } to if( list1.isEmpty() ){ ... }