Skip to content

Commit 31eb35b

Browse files
committed
First commit
0 parents  commit 31eb35b

12 files changed

+4329
-0
lines changed

.gitignore

+105
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
#---------------------------------------#
2+
# Project Ignores #
3+
#---------------------------------------#
4+
5+
# output
6+
/.temp
7+
/.tmp
8+
/build
9+
/dist
10+
11+
# dependencies
12+
/node_modules
13+
.package.swp
14+
15+
# linters
16+
.eslintcache/
17+
.eslintrc
18+
.eslintrc.yaml
19+
.eslintrc.json
20+
.eslintrc.js
21+
.stylelintcache/
22+
.stylelintrc
23+
.stylelintrc.yaml
24+
.stylelintrc.json
25+
.stylelintrc.js
26+
27+
# misc
28+
/connect.lock
29+
/coverage/*
30+
/report_*
31+
/reports/
32+
.sass-cache/
33+
*.log
34+
35+
36+
#---------------------------------------#
37+
# IDEs & Editors Ignores #
38+
#---------------------------------------#
39+
40+
# Sublime Text
41+
/*.sublime*
42+
.sublime-gulp.cache
43+
44+
# JetBrains IDEs
45+
/.idea
46+
47+
48+
#---------------------------------------#
49+
# General Ignores #
50+
#---------------------------------------#
51+
52+
*~
53+
*.orig
54+
.vagrant
55+
56+
57+
#---------------------------------------#
58+
# Linux Ignores #
59+
#---------------------------------------#
60+
61+
# KDE directory preferences
62+
.directory
63+
64+
65+
#---------------------------------------#
66+
# OSX Ignores #
67+
#---------------------------------------#
68+
69+
.DS_Store
70+
.AppleDouble
71+
.LSOverride
72+
.localized
73+
74+
# Icon must end with two \r
75+
Icon
76+
77+
78+
# Thumbnails
79+
._*
80+
81+
# Files that might appear on external disk
82+
.Spotlight-V100
83+
.Trashes
84+
85+
# Directories potentially created on remote AFP share
86+
.AppleDB
87+
.AppleDesktop
88+
Network Trash Folder
89+
Temporary Items
90+
.apdisk
91+
92+
93+
#---------------------------------------#
94+
# Windows Ignores #
95+
#---------------------------------------#
96+
97+
# Windows image file caches
98+
Thumbs.db
99+
ehthumbs.db
100+
101+
# Folder config file
102+
Desktop.ini
103+
104+
# Recycle Bin used on file shares
105+
$RECYCLE.BIN/

0 commit comments

Comments
 (0)