Skip to content

Commit

Permalink
Run Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
kaicataldo committed Nov 18, 2019
1 parent db2b601 commit d18d0b6
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module.exports = {

console.log(
"The babel/array-bracket-spacing rule is deprecated. Please " +
"use the built in array-bracket-spacing rule instead."
"use the built in array-bracket-spacing rule instead.",
);
isWarnedForDeprecation = true;
},
Expand Down
2 changes: 1 addition & 1 deletion eslint/babel-eslint-plugin/src/rules/arrow-parens.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = {

console.log(
"The babel/arrow-parens rule is deprecated. Please " +
"use the built in arrow-parens rule instead."
"use the built in arrow-parens rule instead.",
);
isWarnedForDeprecation = true;
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = {

console.log(
"The babel/func-params-comma-dangle rule is deprecated. Please " +
"use the built in comma-dangle rule instead."
"use the built in comma-dangle rule instead.",
);
isWarnedForDeprecation = true;
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module.exports = {

console.log(
"The babel/generator-star-spacing rule is deprecated. Please " +
"use the built in generator-star-spacing rule instead."
"use the built in generator-star-spacing rule instead.",
);
isWarnedForDeprecation = true;
},
Expand Down
2 changes: 1 addition & 1 deletion eslint/babel-eslint-plugin/src/rules/new-cap.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ function isDecorator(node) {

module.exports = ruleComposer.filterReports(
newCapRule,
problem => !isDecorator(problem.node)
problem => !isDecorator(problem.node),
);
2 changes: 1 addition & 1 deletion eslint/babel-eslint-plugin/src/rules/no-await-in-loop.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = {

console.log(
"The babel/no-await-in-loop rule is deprecated. Please " +
"use the built in no-await-in-loop rule instead."
"use the built in no-await-in-loop rule instead.",
);
isWarnedForDeprecation = true;
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ function isOptionalCallExpression(node) {
module.exports = ruleComposer.filterReports(
rule,
problem =>
!isInDoStatement(problem.node) && !isOptionalCallExpression(problem.node)
!isInDoStatement(problem.node) && !isOptionalCallExpression(problem.node),
);
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ module.exports = ruleComposer.filterReports(
}

return true;
}
},
);
2 changes: 1 addition & 1 deletion eslint/babel-eslint-plugin/src/rules/object-shorthand.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = {

console.log(
"The babel/object-shorthand rule is deprecated. Please " +
"use the built in object-shorthand rule instead."
"use the built in object-shorthand rule instead.",
);
isWarnedForDeprecation = true;
},
Expand Down
2 changes: 1 addition & 1 deletion eslint/babel-eslint-plugin/src/rules/semi.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,5 +119,5 @@ module.exports = ruleComposer.filterReports(
}

return true;
}
},
);

0 comments on commit d18d0b6

Please sign in to comment.