This commit is contained in:
2026-05-13 20:38:59 +03:00
parent 9055c9c93c
commit 5620324b2e
4904 changed files with 391162 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
plugins {
// see https://fabricmc.net/develop/ for new versions
id 'net.fabricmc.fabric-loom-remap' version '1.16-SNAPSHOT' apply false
// see https://projects.neoforged.net/neoforged/moddevgradle for new versions
id 'net.neoforged.moddev' version '2.0.140' apply false
// see // https://github.com/modmuss50/mod-publish-plugin for new versions
id "me.modmuss50.mod-publish-plugin" version "1.1.0" apply false
id 'com.diffplug.spotless' version '7.2.1'
id "checkstyle"
}
allprojects {
apply plugin: 'com.diffplug.spotless'
spotless {
format 'misc', {
target '*.gradle', '.gitattributes', '.gitignore'
trimTrailingWhitespace()
leadingTabsToSpaces()
endWithNewline()
}
}
}