|
| 1 | +# === APPLE FILE SYSTEM CRAP === |
| 2 | +# General |
| 3 | +.DS_Store |
| 4 | +.AppleDouble |
| 5 | +.LSOverride |
| 6 | + |
| 7 | +# Icon must end with two \r |
| 8 | +Icon |
| 9 | + |
| 10 | +# Intellij IDEA |
| 11 | +.idea |
| 12 | + |
| 13 | +# Thumbnails |
| 14 | +._* |
| 15 | + |
| 16 | +# Files that might appear in the root of a volume |
| 17 | +.DocumentRevisions-V100 |
| 18 | +.fseventsd |
| 19 | +.Spotlight-V100 |
| 20 | +.TemporaryItems |
| 21 | +.Trashes |
| 22 | +.VolumeIcon.icns |
| 23 | +.com.apple.timemachine.donotpresent |
| 24 | + |
| 25 | +# Directories potentially created on remote AFP share |
| 26 | +.AppleDB |
| 27 | +.AppleDesktop |
| 28 | +Network Trash Folder |
| 29 | +Temporary Items |
| 30 | +.apdisk |
| 31 | + |
| 32 | +# === JAVA COMPILED CODE AND LOGS === |
| 33 | +# Compiled class file |
| 34 | +*.class |
| 35 | + |
| 36 | +# Log file |
| 37 | +*.log |
| 38 | + |
| 39 | +# BlueJ files |
| 40 | +*.ctxt |
| 41 | + |
| 42 | +# Mobile Tools for Java (J2ME) |
| 43 | +.mtj.tmp/ |
| 44 | + |
| 45 | +## Java/Gradle Stuff |
| 46 | +.gradle |
| 47 | +**/build/ |
| 48 | +!src/**/build/ |
| 49 | +.kotlin |
| 50 | + |
| 51 | +# Ignore Gradle GUI config |
| 52 | +gradle-app.setting |
| 53 | + |
| 54 | +# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) |
| 55 | +!gradle-wrapper.jar |
| 56 | + |
| 57 | +# Avoid ignore Gradle wrappper properties |
| 58 | +!gradle-wrapper.properties |
| 59 | + |
| 60 | +# Cache of project |
| 61 | +.gradletasknamecache |
| 62 | + |
| 63 | +# Eclipse Gradle plugin generated files |
| 64 | +# Eclipse Core |
| 65 | +.project |
| 66 | +# JDT-specific (Eclipse Java Development Tools) |
| 67 | +.classpath |
| 68 | + |
| 69 | +# Package Files # |
| 70 | +*.jar |
| 71 | +*.war |
| 72 | +*.nar |
| 73 | +*.ear |
| 74 | +*.zip |
| 75 | +*.tar.gz |
| 76 | +*.rar |
| 77 | + |
| 78 | +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml |
| 79 | +hs_err_pid* |
| 80 | +replay_pid* |
| 81 | + |
| 82 | +# === RUST BUILDS AND DEBUG === |
| 83 | +# Generated by Cargo |
| 84 | +# will have compiled files and executables |
| 85 | +debug/ |
| 86 | +target/ |
| 87 | + |
| 88 | +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries |
| 89 | +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html |
| 90 | +Cargo.lock |
| 91 | + |
| 92 | +# These are backup files generated by rustfmt |
| 93 | +**/*.rs.bk |
| 94 | + |
| 95 | +# MSVC Windows builds of rustc generate these, which store debugging information |
| 96 | +*.pdb |
| 97 | + |
| 98 | +# RustRover |
| 99 | +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can |
| 100 | +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore |
| 101 | +# and can be added to the global gitignore or merged into this file. For a more nuclear |
| 102 | +# option (not recommended) you can uncomment the following to ignore the entire idea folder. |
| 103 | +#.idea/ |
| 104 | + |
| 105 | +# === PROJECT SPECIFIC === |
| 106 | +plugins/* |
| 107 | +world/* |
| 108 | + |
| 109 | +# project's configurations |
| 110 | +configuration.toml |
| 111 | +features.toml |
| 112 | + |
| 113 | + |
| 114 | +*.local.nbt |
| 115 | + |
| 116 | + |
| 117 | +.vscode/settings.json |
| 118 | + |
| 119 | +# Documentation |
| 120 | +docs/.vitepress/dist |
| 121 | +docs/.vitepress/cache |
| 122 | +node_modules |
| 123 | + |
| 124 | +run/ |
0 commit comments