Skip to content

Commit

Permalink
style: please linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiphe committed Jan 3, 2017
1 parent 66db551 commit a7a4c67
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/MultiTypeValue.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class MultiTypeValue {
const convertMethod = `convert${ucfirst(toType)}`;

if (type(this.value) === toType) {
return;
/* noop */
} else if (type(this.originalValue) === toType) {
this.value = this.originalValue;
} else if (this[convertMethod]) {
Expand Down
2 changes: 1 addition & 1 deletion lib/Uberconfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Uberconfig {
request(requests, conflictResolver) {
const response = {};

Object.keys(requests).forEach(key => {
Object.keys(requests).forEach((key) => {
const request = requests[key];

response[request.as || key] = this.get(
Expand Down
2 changes: 1 addition & 1 deletion lib/getDefault.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function resolveConflict(defaultsMap, newDefault, key) {
}

function hasIncompatible(defaults, newDefault) {
return Boolean(defaults.find((otherDefault) => (
return Boolean(defaults.find(otherDefault => (
!isCompatible(newDefault, otherDefault)
)));
}
Expand Down

0 comments on commit a7a4c67

Please sign in to comment.