Skip to content

Commit 2e48b14

Browse files
committedFeb 8, 2018
initial commit
0 parents  commit 2e48b14

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+12679
-0
lines changed
 

‎.eslintrc.js

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
module.exports = {
2+
"env": {
3+
"browser": true,
4+
"es6": true
5+
},
6+
"extends": "eslint:recommended",
7+
"parserOptions": {
8+
"sourceType": "module"
9+
},
10+
"rules": {
11+
"indent": [
12+
"error",
13+
2
14+
],
15+
"linebreak-style": [
16+
"error",
17+
"unix"
18+
],
19+
"no-console": [
20+
"warn"
21+
],
22+
"quotes": [
23+
"error",
24+
"single"
25+
],
26+
"semi": [
27+
"error",
28+
"always"
29+
]
30+
},
31+
"plugins": [
32+
"html"
33+
]
34+
};

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/
2+
.DS_Store
3+
dist/

0 commit comments

Comments
 (0)