Skip to content
This repository was archived by the owner on Mar 3, 2020. It is now read-only.

Commit 4619a22

Browse files
committed
initial commit
0 parents  commit 4619a22

14 files changed

+4663
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_STORE

velog-backend/.eslintrc.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
module.exports = {
2+
"extends": ["airbnb-base", "plugin:flowtype/recommended"],
3+
"settings": {
4+
"import/resolver": {
5+
"node": {
6+
"moduleDirectory": ["node_modules", "src/"]
7+
}
8+
}
9+
},
10+
"rules": {
11+
"import/prefer-default-export": 0,
12+
"no-console": 0,
13+
"consistent-return": 0
14+
},
15+
"plugins": [
16+
"flowtype"
17+
]
18+
};

velog-backend/.flowconfig

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[ignore]
2+
3+
[include]
4+
5+
[libs]
6+
7+
[lints]
8+
9+
[options]
10+
11+
[strict]

velog-backend/.gitignore

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# package directories
2+
node_modules
3+
jspm_packages
4+
5+
# Serverless directories
6+
.serverless
7+
8+
# Webpack directories
9+
.webpack
10+
11+
# others
12+
.idea
13+
flow-typed
14+
15+
.DS_STORE

0 commit comments

Comments
 (0)