Skip to content

Commit 902afc5

Browse files
Merge pull request #542 from ie3-institute/dependabot/gradle/dev/com.diffplug.spotless-7.0.2
Bump com.diffplug.spotless from 6.25.0 to 7.0.2
2 parents 73072c3 + b152860 commit 902afc5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 3.7.3
1+
version = 3.8.1
22
runner.dialect = scala213
33

44
rewrite.trailingCommas.style = multiple

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id 'java' //java support
44
id 'scala'
55
id 'pmd' // code check, working on source code
6-
id 'com.diffplug.spotless' version '6.25.0'//code format
6+
id 'com.diffplug.spotless' version '7.0.2'//code format
77
id 'com.github.spotbugs' version '6.1.7' // code check, working on byte code
88
id 'de.undercouch.download' version '5.6.0'
99
id 'kr.motd.sphinx' version '2.10.1' // documentation generation

gradle/scripts/spotless.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ spotless {
2424
format 'misc', {
2525
target '**/.gitignore', 'configs/**'
2626
trimTrailingWhitespace()
27-
indentWithTabs()
27+
leadingSpacesToTabs()
2828
endWithNewline()
2929
}
3030

3131
/* Formats markdown files, just like the other misc files, but without trimming trailing white spaces (nested
3232
* enumerations) */
3333
format 'md', {
3434
target '**/*.md'
35-
indentWithSpaces 2
35+
leadingTabsToSpaces(2)
3636
endWithNewline()
3737
}
3838
}

src/main/scala/edu/ie3/osmogrid/mv/VoronoiPolygonSupport.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ object VoronoiPolygonSupport {
7575
* that are used to generate a voronoi diagram, and additional points that
7676
* are added to the polygons.
7777
* @param transitionPoints
78-
* i.e. hv to mv transition points
78+
* i.e. hv to mv transition points
7979
* @param additionalPoints
80-
* i.e. mv to lv transition points
80+
* i.e. mv to lv transition points
8181
* @param ctx
8282
* context
8383
* @tparam T

0 commit comments

Comments
 (0)