mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-05 22:56:11 +00:00
Added CI workflow and local pre-commit hook for formatting and linting the newly added JS, iOS and Android code.
9 lines
237 B
Groovy
9 lines
237 B
Groovy
// formatter & linter configuration for java
|
|
apply plugin: 'com.diffplug.spotless'
|
|
|
|
spotless {
|
|
java {
|
|
target 'src/fabric/**/*.java', 'src/main/java/**/*.java', 'src/paper/java/com/horcrux/svg/**/*.java'
|
|
googleJavaFormat()
|
|
}
|
|
} |