Skip to content

Commit 61634ab

Browse files
committed
style: break long Function parameter declaration
1 parent b29775d commit 61634ab

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/replaceJsxExpressionContainer.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ import BabelTypes, {
55
Identifier
66
} from 'babel-types';
77

8-
export default (t: BabelTypes, path: Object, styleNameAttribute: JSXAttribute, importedHelperIndentifier: Identifier, styleModuleImportMapIdentifier: Identifier): void => {
8+
export default (
9+
t: BabelTypes,
10+
path: Object,
11+
styleNameAttribute: JSXAttribute,
12+
importedHelperIndentifier: Identifier,
13+
styleModuleImportMapIdentifier: Identifier
14+
): void => {
915
const expressionContainerValue = styleNameAttribute.value;
1016
const classNameAttribute = path.node.openingElement.attributes
1117
.find((attribute) => {

0 commit comments

Comments
 (0)