|
| 1 | +.gradle |
| 2 | +**/build/ |
| 3 | +!src/**/build/ |
| 4 | +target/ |
| 5 | + |
| 6 | +# Taken from https://github.com/github/gitignore |
| 7 | + |
| 8 | +### Java |
| 9 | +# Compiled class file |
| 10 | +*.class |
| 11 | + |
| 12 | +# Log file |
| 13 | +*.log |
| 14 | + |
| 15 | +# Mobile Tools for Java (J2ME) |
| 16 | +.mtj.tmp/ |
| 17 | + |
| 18 | +# Package Files # |
| 19 | +*.jar |
| 20 | +*.war |
| 21 | +*.nar |
| 22 | +*.ear |
| 23 | +*.zip |
| 24 | +*.tar.gz |
| 25 | +*.rar |
| 26 | + |
| 27 | +### Eclipse |
| 28 | +.project |
| 29 | +.classpath |
| 30 | +.metadata |
| 31 | +bin/ |
| 32 | +tmp/ |
| 33 | +*.tmp |
| 34 | +*.bak |
| 35 | +*.swp |
| 36 | +*~.nib |
| 37 | +local.properties |
| 38 | +.settings/ |
| 39 | +.loadpath |
| 40 | +.recommenders |
| 41 | + |
| 42 | +# External tool builders |
| 43 | +.externalToolBuilders/ |
| 44 | + |
| 45 | +# Locally stored "Eclipse launch configurations" |
| 46 | +*.launch |
| 47 | + |
| 48 | +# CDT- autotools |
| 49 | +.autotools |
| 50 | + |
| 51 | +# Java annotation processor (APT) |
| 52 | +.factorypath |
| 53 | + |
| 54 | +# PDT-specific (PHP Development Tools) |
| 55 | +.buildpath |
| 56 | + |
| 57 | +# sbteclipse plugin |
| 58 | +.target |
| 59 | + |
| 60 | +# Tern plugin |
| 61 | +.tern-project |
| 62 | + |
| 63 | +# TeXlipse plugin |
| 64 | +.texlipse |
| 65 | + |
| 66 | +# STS (Spring Tool Suite) |
| 67 | +.springBeans |
| 68 | + |
| 69 | +# Code Recommenders |
| 70 | +.recommenders/ |
| 71 | + |
| 72 | +# Annotation Processing |
| 73 | +.apt_generated/ |
| 74 | +.apt_generated_test/ |
| 75 | + |
| 76 | +### JetBrains |
| 77 | +.idea |
| 78 | + |
| 79 | +# Gradle and Maven with auto-import |
| 80 | +*.iml |
| 81 | +*.ipr |
| 82 | + |
| 83 | +# File-based project format |
| 84 | +*.iws |
| 85 | + |
| 86 | +# IntelliJ |
| 87 | +out/ |
| 88 | + |
| 89 | +# mpeltonen/sbt-idea plugin |
| 90 | +.idea_modules/ |
| 91 | + |
| 92 | +# JIRA plugin |
| 93 | +atlassian-ide-plugin.xml |
| 94 | + |
| 95 | +# Crashlytics plugin (for Android Studio and IntelliJ) |
| 96 | +com_crashlytics_export_strings.xml |
| 97 | +crashlytics.properties |
| 98 | +crashlytics-build.properties |
| 99 | +fabric.properties |
| 100 | + |
| 101 | +### VSCode |
| 102 | +.vscode/* |
| 103 | +!.vscode/settings.json |
| 104 | +!.vscode/tasks.json |
| 105 | +!.vscode/launch.json |
| 106 | +!.vscode/extensions.json |
| 107 | +!.vscode/*.code-snippets |
| 108 | + |
| 109 | +# Local History for Visual Studio Code |
| 110 | +.history/ |
| 111 | + |
| 112 | +# Built Visual Studio Code Extensions |
| 113 | +*.vsix |
| 114 | + |
| 115 | +### Vim |
| 116 | +# Swap |
| 117 | +[._]*.s[a-v][a-z] |
| 118 | +!*.svg # comment out if you don't need vector files |
| 119 | +[._]*.sw[a-p] |
| 120 | +[._]s[a-rt-v][a-z] |
| 121 | +[._]ss[a-gi-z] |
| 122 | +[._]sw[a-p] |
| 123 | + |
| 124 | +# Session |
| 125 | +Session.vim |
| 126 | +Sessionx.vim |
| 127 | + |
| 128 | +# Temporary |
| 129 | +.netrwhist |
| 130 | +*~ |
| 131 | +# Auto-generated tag files |
| 132 | +tags |
| 133 | +# Persistent undo |
| 134 | +[._]*.un~ |
| 135 | + |
| 136 | +### MacOs |
| 137 | +# General |
| 138 | +.DS_Store |
| 139 | +.AppleDouble |
| 140 | +.LSOverride |
| 141 | + |
| 142 | +# Icon must end with two \r |
| 143 | +Icon |
| 144 | + |
| 145 | +# Thumbnails |
| 146 | +._* |
| 147 | + |
| 148 | +# Files that might appear in the root of a volume |
| 149 | +.DocumentRevisions-V100 |
| 150 | +.fseventsd |
| 151 | +.Spotlight-V100 |
| 152 | +.TemporaryItems |
| 153 | +.Trashes |
| 154 | +.VolumeIcon.icns |
| 155 | +.com.apple.timemachine.donotpresent |
| 156 | + |
| 157 | +# Directories potentially created on remote AFP share |
| 158 | +.AppleDB |
| 159 | +.AppleDesktop |
| 160 | +Network Trash Folder |
| 161 | +Temporary Items |
| 162 | +.apdisk |
| 163 | + |
| 164 | +### Windows |
| 165 | +# Windows thumbnail cache files |
| 166 | +Thumbs.db |
| 167 | +Thumbs.db:encryptable |
| 168 | +ehthumbs.db |
| 169 | +ehthumbs_vista.db |
| 170 | + |
| 171 | +# Dump file |
| 172 | +*.stackdump |
| 173 | + |
| 174 | +# Folder config file |
| 175 | +[Dd]esktop.ini |
| 176 | + |
| 177 | +# Recycle Bin used on file shares |
| 178 | +$RECYCLE.BIN/ |
| 179 | + |
| 180 | +# Windows Installer files |
| 181 | +*.cab |
| 182 | +*.msi |
| 183 | +*.msix |
| 184 | +*.msm |
| 185 | +*.msp |
| 186 | + |
| 187 | +# Windows shortcuts |
| 188 | +*.lnk |
| 189 | + |
| 190 | +### Linux |
| 191 | +*~ |
| 192 | + |
| 193 | +# temporary files which can be created if a process still has a handle open of a deleted file |
| 194 | +.fuse_hidden* |
| 195 | + |
| 196 | +# KDE directory preferences |
| 197 | +.directory |
| 198 | + |
| 199 | +# Linux trash folder which might appear on any partition or disk |
| 200 | +.Trash-* |
| 201 | + |
| 202 | +# .nfs files are created when an open file is removed but is still being accessed |
| 203 | +.nfs* |
| 204 | + |
| 205 | +### Include gradle-wrapper |
| 206 | +!gradle/wrapper/gradle-wrapper.jar |
0 commit comments