Skip to content

Commit f60c272

Browse files
committed
add file
1 parent 912a8bb commit f60c272

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

Diff for: .eslintrc.js

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
module.exports = {
2+
"env": {
3+
"browser": true,
4+
"es6": true,
5+
"commonjs": false,
6+
"node": true
7+
},
8+
"extends": "airbnb",
9+
"parserOptions": {
10+
"ecmaFeatures": {
11+
"experimentalObjectRestSpread": true
12+
},
13+
"sourceType": "module"
14+
},
15+
"rules": {
16+
"indent": [
17+
2,
18+
4
19+
]
20+
},
21+
"globals": {},
22+
};

Diff for: .gitignore

-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
# temp file for git conflict merging
88
*.orig
9-
*.log
109
*.rej
1110
*.swo
1211
*.swp
@@ -39,8 +38,6 @@ jscoverage_lib/
3938
.imdone/
4039

4140
# Files to ignore
42-
.eslintrc.js
43-
.node-dev.json
4441
.hg
4542
.svn
4643
.CVS

Diff for: logs /app.log

Whitespace-only changes.

0 commit comments

Comments
 (0)