ESLintify Part 3 (#846)

* ESLintify Part 3

* ESLintify Part 3

* ESLintify Part 3
This commit is contained in:
Yangshun Tay 2018-07-11 03:21:31 -07:00 committed by Endilie Yacop Sucipto
parent 5ac2cee658
commit a7a214fb3a
54 changed files with 435 additions and 497 deletions

View file

@ -30,14 +30,14 @@ module.exports = function translatePlugin(babel) {
path.replaceWith(
t.jSXExpressionContainer(
t.callExpression(t.identifier('translate'), [
t.stringLiteral(text + '|' + description),
t.stringLiteral(`${text}|${description}`),
])
)
);
} else {
path.replaceWith(
t.callExpression(t.identifier('translate'), [
t.stringLiteral(text + '|' + description),
t.stringLiteral(`${text}|${description}`),
])
);
}