Skip to content

Commit e5fff2b

Browse files
committed
feat: first commit
1 parent 4c5d90d commit e5fff2b

21 files changed

+8224
-0
lines changed

.babelrc

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"presets": [
3+
[
4+
"@babel/preset-env",
5+
{
6+
"modules": false
7+
}
8+
]
9+
],
10+
"plugins": ["@babel/plugin-proposal-class-properties"],
11+
"env": {
12+
"test": {
13+
"presets": [
14+
[
15+
"@babel/preset-env",
16+
{
17+
"targets": {
18+
"node": "current"
19+
}
20+
}
21+
]
22+
]
23+
}
24+
}
25+
}

.browserslistrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
> 1%
2+
not dead
3+
Android > 4
4+
IOS >= 7
5+
IE 11

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false

.eslintignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/dist/
2+
/static/
3+
/public/
4+
/config/
5+
/lib/
6+
/node_modules/

0 commit comments

Comments
 (0)