Skip to content

Commit 4c279a2

Browse files
committed
lint
1 parent c63aaa7 commit 4c279a2

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

packages/svelte/src/internal/client/dom/blocks/html.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/** @import { Effect, TemplateNode } from '#client' */
2-
import { HYDRATION_ERROR } from '../../../../constants.js';
2+
import { FILENAME, HYDRATION_ERROR } from '../../../../constants.js';
33
import { block, branch, destroy_effect } from '../../reactivity/effects.js';
44
import { hydrate_next, hydrate_node, hydrating, set_hydrate_node } from '../hydration.js';
55
import { create_fragment_from_html } from '../reconciler.js';
@@ -8,7 +8,6 @@ import * as w from '../../warnings.js';
88
import { hash } from '../../../../utils.js';
99
import { DEV } from 'esm-env';
1010
import { dev_current_component_function } from '../../runtime.js';
11-
import { FILENAME } from '../../../../constants.js';
1211

1312
/**
1413
* @param {Element} element

packages/svelte/src/internal/client/dom/blocks/svelte-element.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/** @import { Effect, EffectNodes, TemplateNode } from '#client' */
2-
import { namespace_svg } from '../../../../constants.js';
2+
import { FILENAME, namespace_svg } from '../../../../constants.js';
33
import {
44
hydrate_next,
55
hydrate_node,
@@ -21,7 +21,6 @@ import { current_component_context, current_effect } from '../../runtime.js';
2121
import { DEV } from 'esm-env';
2222
import { EFFECT_TRANSPARENT } from '../../constants.js';
2323
import { assign_nodes } from '../template.js';
24-
import { FILENAME } from '../../../../constants.js';
2524

2625
/**
2726
* @param {Comment | Element} node

packages/svelte/src/internal/server/dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import {
2+
FILENAME,
23
disallowed_paragraph_contents,
34
interactive_elements,
45
is_tag_valid_with_parent
56
} from '../../constants.js';
6-
import { FILENAME } from '../../constants.js';
77
import { current_component } from './context.js';
88

99
/**

0 commit comments

Comments
 (0)