The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

gradle: Enable spotless for Gradle, Markdown and gitignore files

Signed-off-by: utzcoz <utzcoz@outlook.com>

authored by

utzcoz and committed by
Ryan Pavlik
06b2ae73 98407301

+13 -2
-1
CONTRIBUTING.md
··· 81 81 otherwise a description of expected and actual behavior 82 82 - if you cannot disclose your code, or even if you can, 83 83 an "artificial", minimally-sized example can be very valuable. 84 -
+13 -1
build.gradle
··· 54 54 id "com.quittle.svg-2-android-vector" version "0.0.6" apply false 55 55 56 56 // Spotless for Java and Kotlin's code formatting 57 - id 'com.diffplug.spotless' version "6.18.0" apply false 57 + id 'com.diffplug.spotless' version "6.18.0" 58 + } 59 + 60 + spotless { 61 + format 'misc', { 62 + // define the files to apply `misc` to 63 + target '*.gradle', '*.md', '.gitignore' 64 + 65 + // define the steps to apply to those files 66 + trimTrailingWhitespace() 67 + indentWithSpaces(4) 68 + endWithNewline() 69 + } 58 70 } 59 71 60 72 ext {