Skip to content

Commit

Permalink
Update deps, fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
briancavalier committed Oct 21, 2016
1 parent 5fdbd7b commit 9dfc10b
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"rules": {
"complexity": [2, 3],
"indent": [2, "tab", {SwitchCase: 1}],
"arrow-parens": [2, "as-needed"]
"indent": [2, "tab", {"SwitchCase": 1}],
"no-tabs": 0
}
}
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,20 +40,20 @@
"devDependencies": {
"assert": "^1.3.0",
"babel-eslint": "^7.0.0",
"buba": "3.0.1",
"buba": "^4.0.1",
"buble": "^0.14.0",
"coveralls": "^2.11.4",
"eslint": "^3.0.1",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-standard": "^2.0.0",
"coveralls": "^2.11.14",
"eslint": "^3.8.1",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"istanbul": "^1.1.0-alpha.1",
"jsinspect": "^0.8.0",
"mkdirp": "^0.5.1",
"mocha": "3.1.0",
"mocha": "^3.1.2",
"promises-aplus-tests": "^2.1.1",
"rollup": "^0.36.0",
"rollup": "^0.36.3",
"rollup-plugin-buble": "^0.14.0",
"uglify-js": "^2.6.4"
"uglify-js": "^2.7.3"
}
}
2 changes: 1 addition & 1 deletion src/delay.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Delay extends Action {
}

fulfilled (p) {
/*global setTimeout*/
/* global setTimeout */
setTimeout(become, this.time, p, this.promise)
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/emitError.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { isNode } from './env'
const UNHANDLED_REJECTION = 'unhandledRejection'

export default function () {
/*global process, self, CustomEvent*/
/* global process, self, CustomEvent */
// istanbul ignore else */
if (isNode && typeof process.emit === 'function') {
// Returning falsy here means to call the default reportRejection API.
Expand Down
2 changes: 1 addition & 1 deletion src/env.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*global process,MutationObserver,WebKitMutationObserver */
/* global process,MutationObserver,WebKitMutationObserver */

const isNode = typeof process !== 'undefined' &&
Object.prototype.toString.call(process) === '[object process]'
Expand Down
2 changes: 1 addition & 1 deletion src/iterable.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function runIterable (resolve, handler, promises, promise) {
}

function handleItem (resolve, handler, x, i, promise) {
/*eslint complexity:[1,6]*/
/* eslint complexity:[1,6] */
if (!maybeThenable(x)) {
handler.valueAt(x, i, promise)
return
Expand Down
2 changes: 1 addition & 1 deletion src/state.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*eslint no-multi-spaces: 0*/
/* eslint no-multi-spaces: 0 */
export const PENDING = 1 << 0
export const FULFILLED = 1 << 1
export const REJECTED = 1 << 2
Expand Down

0 comments on commit 9dfc10b

Please sign in to comment.