mirror of
https://github.com/FabricMC/fabric.git
synced 2024-11-14 19:25:23 -05:00
44 lines
486 B
Text
44 lines
486 B
Text
# Gradle
|
|
.gradle
|
|
|
|
# VSCode
|
|
.settings/
|
|
.vscode/
|
|
|
|
# Eclipse
|
|
.checkstyle
|
|
.classpath
|
|
.metadata
|
|
.settings
|
|
.project
|
|
*.launch
|
|
|
|
# Intellij/Idea
|
|
.factorypath
|
|
.idea
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
|
|
# Build artifacts
|
|
bin/
|
|
build/
|
|
jars/
|
|
out/
|
|
classes/
|
|
|
|
# Generated sources
|
|
# The trailing * is important, otherwise Git wouldn't evaluate the directories at all and we wouldn't be able to un-ignore some of them.
|
|
**/src/generated/*
|
|
|
|
# Debug artifacts
|
|
run
|
|
*.log
|
|
*.log.gz
|
|
|
|
# Windows
|
|
*.db
|
|
$RECYCLE.BIN/
|
|
|
|
# Mac
|
|
.DS_Store
|