mirror of https://github.com/sveltejs/svelte
parent
1f44aa5787
commit
93420d8ab0
@ -1,6 +0,0 @@
|
|||||||
<script>
|
|
||||||
let array;
|
|
||||||
</script>
|
|
||||||
{#each array as item}
|
|
||||||
<item />
|
|
||||||
{/each}
|
|
@ -1,17 +0,0 @@
|
|||||||
[
|
|
||||||
{
|
|
||||||
"code": "lowercase-component-name",
|
|
||||||
"end": {
|
|
||||||
"character": 64,
|
|
||||||
"column": 10,
|
|
||||||
"line": 5
|
|
||||||
},
|
|
||||||
"message": "A lowercase tag <item> will be treated as a regular HTML element",
|
|
||||||
"pos": 56,
|
|
||||||
"start": {
|
|
||||||
"character": 56,
|
|
||||||
"column": 2,
|
|
||||||
"line": 5
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
@ -1,5 +1,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import thisShouldWarnMe from './MyComponent.svelte';
|
import thisShouldWarnMe from './MyComponent.svelte';
|
||||||
|
let i;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<thisShouldWarnMe />
|
<thisShouldWarnMe />
|
||||||
|
<i />
|
Loading…
Reference in new issue