Skip to content

Commit fd1a1fc

Browse files
committed
initial import
0 parents  commit fd1a1fc

12 files changed

+2589
-0
lines changed

.eslintrc.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
env:
2+
# for more enviromnent presets, see
3+
# https://eslint.org/docs/4.0.0/user-guide/configuring#specifying-environments
4+
browser: true
5+
commonjs: true
6+
es6: true
7+
node: true
8+
extends: google
9+
parserOptions:
10+
ecmaFeatures:
11+
experimentalObjectRestSpread: true
12+
ecmaVersion: 8
13+
sourceType: module
14+
rules:
15+
indent:
16+
- error
17+
- 2
18+
comma-dangle:
19+
- error
20+
- never

.gitignore

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

0 commit comments

Comments
 (0)