Skip to content
This repository was archived by the owner on Jun 27, 2019. It is now read-only.

Commit 550cfc5

Browse files
committed
Initial commit
0 parents  commit 550cfc5

File tree

2 files changed

+92
-0
lines changed

2 files changed

+92
-0
lines changed

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
charset = utf-8
6+
trim_trailing_whitespace = true
7+
insert_final_newline = true
8+
9+
[{package.json,*.yml}]
10+
indent_style = space
11+
indent_size = 2

.gitignore

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
6+
# Runtime data
7+
pids
8+
*.pid
9+
*.seed
10+
11+
# Directory for instrumented libs generated by jscoverage/JSCover
12+
lib-cov
13+
14+
# Coverage directory used by tools like istanbul
15+
coverage
16+
17+
# nyc test coverage
18+
.nyc_output
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 directories
30+
node_modules
31+
jspm_packages
32+
33+
# Optional npm cache directory
34+
.npm
35+
36+
# Optional eslint cache
37+
.eslintcache
38+
39+
# Optional REPL history
40+
.node_repl_history
41+
42+
# macOS specific
43+
*.DS_Store
44+
.AppleDouble
45+
.LSOverride
46+
47+
# Icon must end with two \r
48+
Icon
49+
50+
51+
# Thumbnails
52+
._*
53+
54+
# Files that might appear in the root of a volume
55+
.DocumentRevisions-V100
56+
.fseventsd
57+
.Spotlight-V100
58+
.TemporaryItems
59+
.Trashes
60+
.VolumeIcon.icns
61+
.com.apple.timemachine.donotpresent
62+
63+
# Directories potentially created on remote AFP share
64+
.AppleDB
65+
.AppleDesktop
66+
Network Trash Folder
67+
Temporary Items
68+
.apdisk
69+
70+
# Patternlab CLI specific
71+
72+
.DS_Store
73+
latest-change.txt
74+
patternlab.json
75+
.sass-cache/*
76+
/sass-cache
77+
Thumbs.db
78+
source/css/style.css.map
79+
.idea/
80+
public
81+
test/cli/tmp

0 commit comments

Comments
 (0)