Skip to content

Commit

Permalink
Merge pull request #1 from kn9ts/master
Browse files Browse the repository at this point in the history
Updates
  • Loading branch information
yoda-yoda committed Jun 14, 2016
2 parents 5d48877 + 400bd00 commit 9de050e
Show file tree
Hide file tree
Showing 58 changed files with 1,863 additions and 688 deletions.
3 changes: 0 additions & 3 deletions .babelrc

This file was deleted.

3 changes: 0 additions & 3 deletions .bowerrc

This file was deleted.

1 change: 1 addition & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
repo_token: EI2vRz1HRhJ3pGi7g3J6sMxI4dsnrWxtb
87 changes: 22 additions & 65 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,67 +1,24 @@
{
"parser": "babel-eslint",

"parserOptions": {
"sourceType": "module"
},

"extends": "eslint:recommended",

"globals": {},

"env": {
"browser": true,
"node": true,
"es6": true,
"jasmine": true,
"mocha": true
},

"plugins": [],

"ecmaFeatures": {
"arrowFunctions": true,
"binaryLiterals": true,
"blockBindings": true,
"classes": true,
"defaultParams": true,
"destructuring": true,
"forOf": true,
"generators": true,
"modules": true,
"objectLiteralComputedProperties": true,

"objectLiteralDuplicateProperties": true,
"objectLiteralShorthandMethods": true,
"objectLiteralShorthandProperties": true,
"octalLiterals": true,
"regexUFlag": true,
"regexYFlag": true,
"spread": true,
"superInFunctions": true,
"templateStrings": true,
"unicodeCodePointEscapes": true,
"globalReturn": true,
"jsx": true
},


"rules": {
"indent": 0,
"quotes": [2, "single"],
"linebreak-style": [2, "unix"],
"semi": [2, "always"],
"no-console": 0,
"no-case-declarations": 0,
"no-class-assign": 0,
"no-const-assign": 0,
"no-dupe-class-members": 0,
"no-empty-pattern": 0,
"no-new-symbol": 0,
"no-self-assign": 0,
"no-this-before-super": 0,
"no-unexpected-multiline": 0,
"no-unused-labels": 0,
"constructor-super": 0,
},
"env": {
"node": true,
"mocha": true
},
"extends": "airbnb",
"rules": {
"prefer-template": 0,
"prefer-rest-params": 0,
"strict": 0,
"no-unused-expressions": 0,
"no-param-reassign": 0,
"max-len": [
2,
100,
2,
{
"ignoreComments": true,
"ignoreUrls": true,
"ignorePattern": "\/(.*)\/;"
}
]
}
}
8 changes: 6 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@
## My additions
.tmp
.idea
.vscode
node_modules
public
./public
dist
./server/config/local.env.js
server/config/local.env.js
npm-debug.log
.sass-cache
_site
app.yaml

### Added by loopback framework
*.csv
Expand Down
2 changes: 0 additions & 2 deletions .jshintignore

This file was deleted.

48 changes: 0 additions & 48 deletions .jshintrc

This file was deleted.

1 change: 1 addition & 0 deletions Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
web: node index.js

0 comments on commit 9de050e

Please sign in to comment.