checkstyle-idea icon indicating copy to clipboard operation
checkstyle-idea copied to clipboard

CheckStyle plug-in for IntelliJ IDEA

Results 71 checkstyle-idea issues
Sort by recently updated
recently updated
newest added

``` java.lang.NullPointerException at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490) at java.base/java.util.concurrent.ForkJoinTask.getThrowableException(ForkJoinTask.java:603) at java.base/java.util.concurrent.ForkJoinTask.reportException(ForkJoinTask.java:678) at java.base/java.util.concurrent.ForkJoinTask.join(ForkJoinTask.java:722) at com.intellij.concurrency.JobLauncherImpl.processQueue(JobLauncherImpl.java:357) at com.intellij.codeInsight.daemon.impl.LocalInspectionsPass.processInOrder(LocalInspectionsPass.java:414) at com.intellij.codeInsight.daemon.impl.LocalInspectionsPass.visitRestElementsAndCleanup(LocalInspectionsPass.java:494) at com.intellij.codeInsight.daemon.impl.LocalInspectionsPass.inspect(LocalInspectionsPass.java:229) at com.intellij.codeInsight.daemon.impl.LocalInspectionsPass.collectInformationWithProgress(LocalInspectionsPass.java:127) at com.intellij.codeInsight.daemon.impl.ProgressableTextEditorHighlightingPass.doCollectInformation(ProgressableTextEditorHighlightingPass.java:84) at...

Currently, the OperatorWrap check which requires operators like && to be at the start of the new line (https://checkstyle.org/config_whitespace.html#OperatorWrap) is not imported into IDEA. By default, IDEA autoformatter puts it...

enhancement

Maybe not so much an issue, but more a question/feature-request: how can I enforce a checkstyle-run in IntelliJ before committing changes to my git repo? I'd really like to make...

enhancement

Thank you @mqzry for the feature. There is a bug from the pull #363 which prevents customImportOrder to work properly. ``` private void parseImportOrderRules(@NotNull String value) { String[] groups =...

Idea: 2021.2, plugin last version download and install from your web yesterday. Reported by Robert ORÁLEK. ``` com.intellij.diagnostic.PluginException: .//../checkstyle-filter.xml [Plugin: CheckStyle-IDEA] at com.intellij.ide.plugins.cl.PluginClassLoader.findResource(PluginClassLoader.java:504) at com.intellij.ide.plugins.cl.PluginClassLoader.findResource(PluginClassLoader.java:471) at java.base/java.lang.ClassLoader.getResource(ClassLoader.java:1401) at java.base/java.lang.ClassLoader.getResource(ClassLoader.java:1396) at...

Here's my case: for some of my projects I use `Google Checks` **built-in** style BUT with some exceptions. So I have created `suppressions.xml` for these exceptions and can use it...

enhancement

We have a hybrid Java & Kotlin Android app project. We use Detekt for Kotlin static analysis and PMD/Checkstyle for Java. When committing Kotlin files the Checkstyle popup blocks Android...

Current plugin is 89MB which might be challenging for some users (depending on their connectivity). I see there's a broad range of bundled versions of Checkstyle (and their corresponding dependencies)...

IntelliJ IDEA 2016.2 CheckStyle-IDEA 4.30.1 I read in a suppression file using the SuppressionFilter module: ``` ... ... ``` I have CheckStyle-IDEA configured to scan test classes as well as...

I'm trying to make the plugin configuration shareable among developers and store it in git: ```xml ``` It basically works except the sevntu-checkstyle jar location: ```xml ``` Because we are...