Skip to content
This repository was archived by the owner on Feb 5, 2020. It is now read-only.

Commit efe3096

Browse files
committed
Fix linting.
1 parent 7ecff39 commit efe3096

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

lib/util/RdfUtil.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,9 @@ util.addBinding = function (bindings, left, right) {
147147
bindings[left] = right;
148148
// The right-hand side should be consistent with the binding
149149
else if (right !== bindings[left]) {
150-
throw new Error(['Cannot bind', left, 'to', right,
151-
'because it was already bound to', bindings[left] + '.'].join(' '));
150+
throw new Error([
151+
'Cannot bind', left, 'to', right,
152+
'because it was already bound to', bindings[left] + '.'].join(' '));
152153
}
153154
}
154155
// Both are constants, so they should be equal for a successful binding

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
},
4242
"devDependencies": {
4343
"chai": "^3.5.0",
44-
"eslint": "^3.8.1",
44+
"eslint": "^3.9.1",
4545
"jsdoc": "^3.4.2",
4646
"mocha": "^3.1.2",
4747
"pre-commit": "^1.1.3",

0 commit comments

Comments
 (0)