Skip to content

Commit 83b3b97

Browse files
committed
Edit gitignore with gitignore.io
1 parent 1a77ebe commit 83b3b97

File tree

1 file changed

+136
-10
lines changed

1 file changed

+136
-10
lines changed

.gitignore

Lines changed: 136 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,145 @@
1-
# OS files
1+
# Created by https://www.gitignore.io
2+
3+
### Node ###
4+
# Logs
5+
logs
6+
*.log
7+
8+
# Runtime data
9+
pids@
10+
*.pid
11+
*.seed
12+
13+
# Directory for instrumented libs generated by jscoverage/JSCover
14+
lib-cov
15+
16+
# Coverage directory used by tools like istanbul
17+
coverage
18+
19+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
20+
.grunt
21+
22+
# Compiled binary addons (http://nodejs.org/api/addons.html)
23+
build/Release
24+
25+
# Dependency directory
26+
# Commenting this out is preferred by some people, see
27+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
28+
node_modules
29+
30+
# Users Environment Variables
31+
.lock-wscript
32+
33+
34+
### WebStorm ###
35+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
36+
37+
/*.iml
38+
39+
## Directory-based project format:
40+
.idea/
41+
# if you remove the above rule, at least ignore the follwing:
42+
43+
# User-specific stuff:
44+
# .idea/workspace.xml
45+
# .idea/tasks.xml
46+
# .idea/dictionaries
47+
48+
# Sensitive or high-churn files:
49+
# .idea/dataSources.ids
50+
# .idea/dataSources.xml
51+
# .idea/sqlDataSources.xml
52+
# .idea/dynamic.xml
53+
# .idea/uiDesigner.xml
54+
55+
# Gradle:
56+
# .idea/gradle.xml
57+
# .idea/libraries
58+
59+
# Mongo Explorer plugin:
60+
# .idea/mongoSettings.xml
61+
62+
## File-based project format:
63+
*.ipr
64+
*.iws
65+
66+
## Plugin-specific files:
67+
68+
# IntelliJ
69+
out/
70+
71+
# mpeltonen/sbt-idea plugin
72+
.idea_modules/
73+
74+
# JIRA plugin
75+
atlassian-ide-plugin.xml
76+
77+
# Crashlytics plugin (for Android Studio and IntelliJ)
78+
com_crashlytics_export_strings.xml
79+
80+
81+
### OSX ###
282
.DS_Store
83+
.AppleDouble
84+
.LSOverride
85+
86+
# Icon must end with two \r
87+
Icon
88+
89+
90+
# Thumbnails
91+
._*
92+
93+
# Files that might appear on external disk
94+
.Spotlight-V100
95+
.Trashes
96+
97+
# Directories potentially created on remote AFP share
98+
.AppleDB
99+
.AppleDesktop
100+
Network Trash Folder
101+
Temporary Items
102+
.apdisk
103+
104+
105+
### Windows ###
106+
# Windows image file caches
3107
Thumbs.db
108+
ehthumbs.db
4109

5-
# Temporary files
110+
# Folder config file
111+
Desktop.ini
112+
113+
# Recycle Bin used on file shares
114+
$RECYCLE.BIN/
115+
116+
# Windows Installer files
117+
*.cab
118+
*.msi
119+
*.msm
120+
*.msp
121+
122+
# Windows shortcuts
123+
*.lnk
124+
125+
126+
### Linux ###
6127
*~
7128

8-
# Folders
129+
# KDE directory preferences
130+
.directory
131+
132+
133+
### grunt ###
134+
# Grunt usually compiles files inside this directory
9135
dist/
10136

11-
node_modules/*
12-
!node_modules/README.md
137+
# Grunt usually preprocesses files such as coffeescript, compass... inside the .tmp directory
138+
.tmp/
13139

14-
vendor/*
15-
!vendor/README.md
140+
# OS files
141+
.DS_Store
142+
Thumbs.db
16143

17-
# Grunt files
18-
.grunt/
19-
_SpecRunner.html
144+
# Temporary files
145+
*~

0 commit comments

Comments
 (0)