Commit b6df6e4b3bd8ce25c64c16cf3cc77272b2d513ed

Authored by Arsisakarn Srilatanart
1 parent 98e44459
Exists in master

updated .gitignore to ignore jetbrains,eclipse,node,composer,java,windows,osx,li…

…nux,bower,grunt,netbeans,android,laravel
Showing 1 changed file with 182 additions and 29 deletions   Show diff stats
.gitignore
1 1  
2   -# Created by https://www.gitignore.io/api/java,windows,osx,intellij,eclipse
3   -
4   -### Windows ###
5   -# Windows image file caches
6   -Thumbs.db
7   -ehthumbs.db
8   -
9   -# Folder config file
10   -Desktop.ini
11   -
12   -# Recycle Bin used on file shares
13   -$RECYCLE.BIN/
14   -
15   -# Windows Installer files
16   -*.cab
17   -*.msi
18   -*.msm
19   -*.msp
20   -
21   -# Windows shortcuts
22   -*.lnk
23   -
  2 +# Created by https://www.gitignore.io/api/jetbrains,eclipse,node,composer,java,windows,osx,linux,bower,grunt,netbeans,android,laravel
24 3  
25 4 ### OSX ###
26   -.DS_Store
  5 +*.DS_Store
27 6 .AppleDouble
28 7 .LSOverride
29 8  
... ... @@ -51,10 +30,13 @@ Temporary Items
51 30 .apdisk
52 31  
53 32  
54   -### Intellij ###
  33 +### JetBrains ###
55 34 # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
56 35 # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
57 36  
  37 +# All idea folder
  38 +.idea/*
  39 +
58 40 # User-specific stuff:
59 41 .idea/workspace.xml
60 42 .idea/tasks.xml
... ... @@ -97,13 +79,129 @@ crashlytics.properties
97 79 crashlytics-build.properties
98 80 fabric.properties
99 81  
100   -### Intellij Patch ###
  82 +### JetBrains Patch ###
101 83 # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
102 84  
103 85 # *.iml
104 86 # modules.xml
105 87  
106 88  
  89 +### Node ###
  90 +# Logs
  91 +logs
  92 +*.log
  93 +npm-debug.log*
  94 +
  95 +# Runtime data
  96 +pids
  97 +*.pid
  98 +*.seed
  99 +
  100 +# Directory for instrumented libs generated by jscoverage/JSCover
  101 +lib-cov
  102 +
  103 +# Coverage directory used by tools like istanbul
  104 +coverage
  105 +
  106 +# nyc test coverage
  107 +.nyc_output
  108 +
  109 +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  110 +.grunt
  111 +
  112 +# node-waf configuration
  113 +.lock-wscript
  114 +
  115 +# Compiled binary addons (http://nodejs.org/api/addons.html)
  116 +build/Release
  117 +
  118 +# Dependency directories
  119 +node_modules
  120 +jspm_packages
  121 +
  122 +# Optional npm cache directory
  123 +.npm
  124 +
  125 +# Optional REPL history
  126 +.node_repl_history
  127 +
  128 +
  129 +### Composer ###
  130 +composer.phar
  131 +/vendor/
  132 +
  133 +# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
  134 +# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
  135 +# composer.lock
  136 +
  137 +
  138 +### Android ###
  139 +# Built application files
  140 +*.apk
  141 +*.ap_
  142 +
  143 +# Files for the ART/Dalvik VM
  144 +*.dex
  145 +
  146 +# Java class files
  147 +*.class
  148 +
  149 +# Generated files
  150 +bin/
  151 +gen/
  152 +out/
  153 +
  154 +# Gradle files
  155 +.gradle/
  156 +build/
  157 +
  158 +# Local configuration file (sdk path, etc)
  159 +local.properties
  160 +
  161 +# Proguard folder generated by Eclipse
  162 +proguard/
  163 +
  164 +# Log Files
  165 +*.log
  166 +
  167 +# Android Studio Navigation editor temp files
  168 +.navigation/
  169 +
  170 +# Android Studio captures folder
  171 +captures/
  172 +
  173 +# Intellij
  174 +*.iml
  175 +.idea/workspace.xml
  176 +
  177 +# Keystore files
  178 +*.jks
  179 +
  180 +### Android Patch ###
  181 +gen-external-apklibs
  182 +
  183 +
  184 +### Windows ###
  185 +# Windows image file caches
  186 +Thumbs.db
  187 +ehthumbs.db
  188 +
  189 +# Folder config file
  190 +Desktop.ini
  191 +
  192 +# Recycle Bin used on file shares
  193 +$RECYCLE.BIN/
  194 +
  195 +# Windows Installer files
  196 +*.cab
  197 +*.msi
  198 +*.msm
  199 +*.msp
  200 +
  201 +# Windows shortcuts
  202 +*.lnk
  203 +
  204 +
107 205 ### Eclipse ###
108 206  
109 207 .metadata
... ... @@ -158,6 +256,62 @@ local.properties
158 256 .recommenders/
159 257  
160 258  
  259 +### Linux ###
  260 +*~
  261 +
  262 +# temporary files which can be created if a process still has a handle open of a deleted file
  263 +.fuse_hidden*
  264 +
  265 +# KDE directory preferences
  266 +.directory
  267 +
  268 +# Linux trash folder which might appear on any partition or disk
  269 +.Trash-*
  270 +
  271 +
  272 +### Bower ###
  273 +bower_components
  274 +.bower-cache
  275 +.bower-registry
  276 +.bower-tmp
  277 +
  278 +
  279 +### grunt ###
  280 +# Grunt usually compiles files inside this directory
  281 +dist/
  282 +
  283 +# Grunt usually preprocesses files such as coffeescript, compass... inside the .tmp directory
  284 +.tmp/
  285 +
  286 +
  287 +### NetBeans ###
  288 +nbproject/private/
  289 +build/
  290 +nbbuild/
  291 +dist/
  292 +nbdist/
  293 +nbactions.xml
  294 +.nb-gradle/
  295 +
  296 +
  297 +### Laravel ###
  298 +vendor/
  299 +node_modules/
  300 +
  301 +# Laravel 4 specific
  302 +bootstrap/compiled.php
  303 +app/storage/
  304 +
  305 +# Laravel 5 & Lumen specific
  306 +bootstrap/cache/
  307 +.env.*.php
  308 +.env.php
  309 +.env
  310 +
  311 +# Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer
  312 +.rocketeer/
  313 +
  314 +
161 315 ### Java ###
162 316 *.class
163 317  
... ... @@ -165,10 +319,9 @@ local.properties
165 319 .mtj.tmp/
166 320  
167 321 # Package Files #
168   -## commented out to support storage of libs in git
169   -# *.jar
170   -# *.war
171   -# *.ear
  322 +*.jar
  323 +*.war
  324 +*.ear
172 325  
173 326 # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
174 327 hs_err_pid*
... ...