You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,8 +11,8 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
11
11
12
12
## [Unreleased]
13
13
### Added
14
-
* Maven - Support for formatting shell scripts via [shfmt](https://github.com/mvdan/sh). ([#1998](https://github.com/diffplug/spotless/pull/1998))
15
14
* Support for `gofmt` ([#2001](https://github.com/diffplug/spotless/pull/2001))
15
+
* Support for formatting Java Docs for the Palantir formatter ([#2009](https://github.com/diffplug/spotless/pull/2009))
Copy file name to clipboardExpand all lines: plugin-gradle/CHANGES.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,9 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
5
5
## [Unreleased]
6
6
* Support for `gofmt` ([#2001](https://github.com/diffplug/spotless/pull/2001))
7
7
8
+
### Added
9
+
* Maven / Gradle - Support for formatting Java Docs for the Palantir formatter ([#2009](https://github.com/diffplug/spotless/pull/2009))
10
+
8
11
## [6.24.0] - 2024-01-15
9
12
### Added
10
13
* Support for shell formatting via [shfmt](https://github.com/mvdan/sh). ([#1994](https://github.com/diffplug/spotless/pull/1994))
Copy file name to clipboardExpand all lines: plugin-gradle/README.md
+22-2Lines changed: 22 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -220,6 +220,8 @@ spotless {
220
220
palantirJavaFormat()
221
221
// optional: you can specify a specific version and/or switch to AOSP/GOOGLE style
222
222
palantirJavaFormat('2.9.0').style("GOOGLE")
223
+
// optional: you can also format Javadocs, requires at least Palantir 2.39.0
224
+
palantirJavaFormat('2.39.0').formatJavadoc(true)
223
225
```
224
226
225
227
### eclipse jdt
@@ -1086,16 +1088,34 @@ To apply prettier to more kinds of files, just add more formats
1086
1088
Since spotless uses the actual npm prettier package behind the scenes, it is possible to use prettier with
1087
1089
[plugins](https://prettier.io/docs/en/plugins.html#official-plugins) or [community-plugins](https://www.npmjs.com/search?q=prettier-plugin) in order to support even more file types.
Copy file name to clipboardExpand all lines: plugin-maven/CHANGES.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
6
6
### Added
7
7
* Support for formatting shell scripts via [shfmt](https://github.com/mvdan/sh). ([#1998](https://github.com/diffplug/spotless/issues/1998))
8
8
* Support for `gofmt` ([#2001](https://github.com/diffplug/spotless/pull/2001))
9
+
* Support for formatting Java Docs for the Palantir formatter ([#2009](https://github.com/diffplug/spotless/pull/2009))
0 commit comments