Skip to content

Commit 2a38c26

Browse files
author
cfernandes
committed
Added *ignores
1 parent 8cab3bd commit 2a38c26

File tree

2 files changed

+113
-0
lines changed

2 files changed

+113
-0
lines changed

.gitignore

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

.npmignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
tmp
3+
node_modules
4+
*.env
5+
gulpfile.js
6+
.eslintrc
7+
.editorconfig

0 commit comments

Comments
 (0)