Excluded run folder in IDEA

This commit is contained in:
RaphiMC 2023-12-25 20:30:50 +01:00
parent 967b7241ec
commit f98465593f
No known key found for this signature in database
GPG Key ID: 0F6BB0657A03AC94

View File

@ -1,6 +1,7 @@
plugins {
id "fabric-loom" version "1.4-SNAPSHOT"
id "maven-publish"
id "idea"
}
base {
@ -155,3 +156,12 @@ publishing {
}
}
}
idea {
module {
["run"].each {
excludeDirs << file("$it")
}
}
}