spotless icon indicating copy to clipboard operation
spotless copied to clipboard

Keep your code spotless

Results 344 spotless issues
Sort by recently updated
recently updated
newest added

When running _spotlessCheck / spotlessApply_ or simply _gradle build / ./gradlew build_, I get following error: **If the initializer was null, then one of roundtripStateInternal or equalityStateInternal should be non-null,...

- https://github.com/quarkusio/quarkus/pull/48041 spot: ```xml quarkus-panache-parent io.quarkus 999-SNAPSHOT ../pom.xml 4.0.0 quarkus-hibernate-reactive-panache-common-parent Quarkus - Hibernate Reactive with Panache - Common pom deployment runtime ``` idea: ```xml quarkus-panache-parent io.quarkus 999-SNAPSHOT ../pom.xml 4.0.0 quarkus-hibernate-reactive-panache-common-parent...

- https://github.com/quarkusio/quarkus/pull/48041 - https://github.com/quarkusio/quarkus/blob/073d40dc6cd33ceb37e16ac8f3bf33c4fa9226f4/extensions/resteasy-reactive/rest-client/deployment/src/main/java/io/quarkus/rest/client/reactive/deployment/ClientRedirectHandler.java#L4 ```console [INFO] --- spotless:2.44.4:apply (format-java) @ quarkus-rest-client-deployment --- [INFO] Index file does not exist. Fallback to an empty index [INFO] clean file: /Users/vincent.potucek/IdeaProjects/quarkus/extensions/resteasy-reactive/rest-client/deployment/src/test/java/io/quarkus/rest/client/reactive/InterfacePathInheritanceTest.java [ERROR] Step 'eclipse...

Closes #2460 As suggested in https://github.com/diffplug/spotless/issues/2460#issuecomment-2785070757, this is a first step to raise awareness to users that the version declared in the config file is not used. We might work...

Hi, Spotless throws an Java Multi-line IndexOutOfBoundsException on two Java Multi-line String constants in a unit test. Even when they are empty. ``` private static final String TEST_ONE = """...

**Contrary to the formatter within the Eclipse IDE (which sorts Java class members and imports alphabetically)**, *the `eclipse` formatter within Spotless sorts Java class members and imports lexicographically* (!?!) —...

This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | com.gradle.develocity | `3.19.2` -> `4.0.2` | [![age](https://developer.mend.io/api/mc/badges/age/maven/com.gradle.develocity:com.gradle.develocity.gradle.plugin/4.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/com.gradle.develocity:com.gradle.develocity.gradle.plugin/4.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)...

I have the following switch expression ```java result = switch (literal) { case Literal.Integer(int value, int ignored) -> value; case Literal.Long(long value, int ignored) -> value; case Literal.Float(float value) ->...