Skip to content

Commit

Permalink
Merge pull request #24 from sebelga/release/v0.8.0
Browse files Browse the repository at this point in the history
Add Promise Support
  • Loading branch information
sebelga authored Nov 14, 2016
2 parents 718740a + 27b663f commit 318c459
Show file tree
Hide file tree
Showing 35 changed files with 3,543 additions and 3,246 deletions.
25 changes: 22 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
}
}
"sourceType": "script"
},
"root": true,
"env": {
"node": true
},
"extends": "airbnb-base",
"plugins": [
"mocha"
],
"rules": {
// enable additional rules
"indent": ["error", 4, {"SwitchCase": 1}],
"no-use-before-define": ["error", {"functions": false}],
"prefer-rest-params": "off",
"prefer-spread": "off",
"no-underscore-dangle": "off",
"no-param-reassign": "off",
"max-len": ["error", 120],
"mocha/no-exclusive-tests": "off"
}
}
8 changes: 7 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,10 @@ node_js:
branches:
only:
- master
- /^release\/.*$/
- /^release\/.*$/

script:
- npm test

after_success:
- npm run coveralls
Loading

0 comments on commit 318c459

Please sign in to comment.