Run Prettier

This commit is contained in:
Kai Cataldo 2019-11-17 23:31:38 -05:00
parent db2b601886
commit d18d0b6478
10 changed files with 10 additions and 10 deletions

View File

@ -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;
},

View File

@ -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;
},

View File

@ -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;
},

View File

@ -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;
},

View File

@ -15,5 +15,5 @@ function isDecorator(node) {
module.exports = ruleComposer.filterReports(
newCapRule,
problem => !isDecorator(problem.node)
problem => !isDecorator(problem.node),
);

View File

@ -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;
},

View File

@ -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),
);

View File

@ -23,5 +23,5 @@ module.exports = ruleComposer.filterReports(
}
return true;
}
},
);

View File

@ -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;
},

View File

@ -119,5 +119,5 @@ module.exports = ruleComposer.filterReports(
}
return true;
}
},
);