Skip to content

Commit fb40fe5

Browse files
author
Krit
committed
update gitignore
1 parent dad0689 commit fb40fe5

File tree

1 file changed

+77
-0
lines changed

1 file changed

+77
-0
lines changed

.gitignore

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,80 @@ npm-debug.log
88

99
// vim .swp
1010
*.swp
11+
### Node template
12+
# Logs
13+
logs
14+
*.log
15+
npm-debug.log*
16+
17+
# Runtime data
18+
pids
19+
*.pid
20+
*.seed
21+
22+
# Directory for instrumented libs generated by jscoverage/JSCover
23+
lib-cov
24+
25+
# Coverage directory used by tools like istanbul
26+
coverage
27+
28+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
29+
.grunt
30+
31+
# node-waf configuration
32+
.lock-wscript
33+
34+
# Compiled binary addons (http://nodejs.org/api/addons.html)
35+
build/Release
36+
37+
# Dependency directory
38+
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
39+
node_modules
40+
### JetBrains template
41+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
42+
43+
*.iml
44+
45+
## Directory-based project format:
46+
.idea/
47+
# if you remove the above rule, at least ignore the following:
48+
49+
# User-specific stuff:
50+
# .idea/workspace.xml
51+
# .idea/tasks.xml
52+
# .idea/dictionaries
53+
54+
# Sensitive or high-churn files:
55+
# .idea/dataSources.ids
56+
# .idea/dataSources.xml
57+
# .idea/sqlDataSources.xml
58+
# .idea/dynamic.xml
59+
# .idea/uiDesigner.xml
60+
61+
# Gradle:
62+
# .idea/gradle.xml
63+
# .idea/libraries
64+
65+
# Mongo Explorer plugin:
66+
# .idea/mongoSettings.xml
67+
68+
## File-based project format:
69+
*.ipr
70+
*.iws
71+
72+
## Plugin-specific files:
73+
74+
# IntelliJ
75+
/out/
76+
77+
# mpeltonen/sbt-idea plugin
78+
.idea_modules/
79+
80+
# JIRA plugin
81+
atlassian-ide-plugin.xml
82+
83+
# Crashlytics plugin (for Android Studio and IntelliJ)
84+
com_crashlytics_export_strings.xml
85+
crashlytics.properties
86+
crashlytics-build.properties
87+

0 commit comments

Comments
 (0)