Skip to content

Commit 066e96e

Browse files
committed
Merge pull request #2 from thkang2/dev
MR with mail module added
2 parents f4b65ae + 0ef9782 commit 066e96e

24 files changed

+2679
-69
lines changed

Backend/.eslintrc

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"extends": "airbnb-base",
3+
"rules": {
4+
"no-use-before-define": 0,
5+
"strict": 0,
6+
"comma-dangle": [2, "never"],
7+
"func-names": 0,
8+
"no-underscore-dangle": 0,
9+
"prefer-rest-params": 0,
10+
"no-param-reassign": 0,
11+
"prefer-template": 0,
12+
"new-cap": 0,
13+
"global-require": 0,
14+
"consistent-return": 0,
15+
"max-len": [2, 200],
16+
"camelcase": 0
17+
},
18+
"parserOptions": {
19+
"ecmaVersion": 6
20+
},
21+
"globals": {
22+
"describe": true,
23+
"it": true,
24+
"before": true,
25+
"beforeEach": true,
26+
"after": true,
27+
"afterEach": true
28+
}
29+
}

Backend/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
*.zip

0 commit comments

Comments
 (0)