Skip to content

Commit

Permalink
added node es6 example to refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
seanedw1 committed Mar 6, 2017
1 parent 7c094ac commit a64b0a8
Show file tree
Hide file tree
Showing 22 changed files with 1,759 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Node/Demo1/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"env": {
"node": true
},
"extends": "airbnb",
"plugins": [
"react"
],
"rules": {
"new-cap": 0,
"prefer-template": 0,
"global-require": 0
},
"globals": {
"describe": true,
"it": true,
"beforeEach": true,
"afterEach": true
}
}
8 changes: 8 additions & 0 deletions Node/Demo1/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.DS_store
node_modules
.env
.env.json
*.logs
*.log
out
build
Loading

0 comments on commit a64b0a8

Please sign in to comment.