Skip to content

Commit

Permalink
Remove eslint errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
gunta committed Jun 1, 2016
1 parent 8cee249 commit 20ec477
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"no-process-env": 0, // `2` is recommended
"no-proto": 2,
"no-redeclare": [2, {"builtinGlobals": true}], // `2` is recommended and actually defaults to `[2, {"builtinGlobals": false}]`
"no-return-assign": [2, "except-parens"],
"no-return-assign": [1, "except-parens"],
"no-script-url": 2,
"no-self-compare": 2,
"no-sequences": 2,
Expand Down Expand Up @@ -153,6 +153,6 @@
"no-sync": 1, // `2` is default

// eslint v2
"keyword-spacing": 2
//"keyword-spacing": 2
}
}
3 changes: 2 additions & 1 deletion lib/util/datautil.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ datautil.applyData = function(device) {
}
else {
log.info(
'Device database does not have an entry for "%s" (model "%s"/"%s"). This is not an error, it only means that we don\'t have data for it yet.'
'Device database does not have an entry for "%s" (model "%s"/"%s"). ' +
'This is not an error, it only means that we don\'t have data for it yet.'
, device.serial
, device.model
, device.product
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"chai": "^3.4.1",
"css-loader": "^0.23.1",
"del": "^2.0.1",
"eslint": "^2.0.0-beta.1",
"eslint": "^2.11.1",
"event-stream": "^3.3.2",
"exports-loader": "^0.6.2",
"extract-text-webpack-plugin": "^1.0.1",
Expand Down

0 comments on commit 20ec477

Please sign in to comment.