Skip to content

Commit 005b323

Browse files
committed
adding static files
1 parent b6ac02c commit 005b323

3 files changed

Lines changed: 31 additions & 0 deletions

File tree

.babelrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"presets": [
3+
"@babel/env"
4+
]
5+
}

.dockerignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Dockerfile
2+
node_modules
3+
.circleci
4+
.vscode
5+
*.log
6+
.gitignore
7+
deploy-build.sh

.eslintrc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"extends": "airbnb",
3+
"env": {
4+
"es6": true,
5+
"node": true
6+
},
7+
"parser": "babel-eslint",
8+
"rules": {
9+
"indent": [
10+
2,
11+
"tab",
12+
{
13+
"SwitchCase": 1,
14+
"VariableDeclarator": 1
15+
}
16+
],
17+
"no-tabs": 0
18+
}
19+
}

0 commit comments

Comments
 (0)