Skip to content

Commit 52d9a34

Browse files
committed
Prettier
1 parent fb6bb34 commit 52d9a34

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/colocated-babel-plugin.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ module.exports = function (babel) {
2424
ExportDefaultDeclaration(path, state) {
2525
let defaultExportDeclarationPath = path.get('declaration');
2626
let defaultExportIsExpressionOrClass =
27-
defaultExportDeclarationPath.isClass() || defaultExportDeclarationPath.isExpression() || defaultExportDeclarationPath.isFunction();
27+
defaultExportDeclarationPath.isClass() ||
28+
defaultExportDeclarationPath.isExpression() ||
29+
defaultExportDeclarationPath.isFunction();
2830

2931
if (
3032
state.colocatedTemplateFound !== true ||

0 commit comments

Comments
 (0)