Skip to content

Commit cd37911

Browse files
committed
chore: format files after lint
1 parent fad81e8 commit cd37911

1 file changed

Lines changed: 13 additions & 2 deletions

File tree

packages/svelte/src/compiler/phases/3-transform/server/visitors/RegularElement.js

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ import { dev, locator } from '../../../../state.js';
88
import * as b from '#compiler/builders';
99
import { clean_nodes, determine_namespace_for_children } from '../../utils.js';
1010
import { is_custom_element_node } from '../../../nodes.js';
11-
import { ELEMENT_IS_NAMESPACED, ELEMENT_PRESERVE_ATTRIBUTE_CASE } from '../../../../../constants.js';
11+
import {
12+
ELEMENT_IS_NAMESPACED,
13+
ELEMENT_PRESERVE_ATTRIBUTE_CASE
14+
} from '../../../../../constants.js';
1215
import { build_element_attributes, build_spread_object } from './shared/element.js';
1316
import {
1417
process_children,
@@ -188,7 +191,15 @@ export function RegularElement(node, context) {
188191
);
189192

190193
const statement = b.stmt(
191-
b.call('$$renderer.select', attributes_expression, css_hash, classes, styles, flag_literal, fn)
194+
b.call(
195+
'$$renderer.select',
196+
attributes_expression,
197+
css_hash,
198+
classes,
199+
styles,
200+
flag_literal,
201+
fn
202+
)
192203
);
193204

194205
if (optimiser.expressions.length > 0) {

0 commit comments

Comments
 (0)