mirror of https://github.com/sveltejs/svelte
parent
7e5f008a78
commit
622e7b0190
@ -0,0 +1,15 @@
|
|||||||
|
[{
|
||||||
|
"message": "Combining other expressions with '_' is redundant",
|
||||||
|
"start": {
|
||||||
|
"line": 1,
|
||||||
|
"column": 0,
|
||||||
|
"character": 0
|
||||||
|
},
|
||||||
|
"end":{
|
||||||
|
"line": 1,
|
||||||
|
"column": 16,
|
||||||
|
"character": 16
|
||||||
|
},
|
||||||
|
"pos": 0,
|
||||||
|
"code": "redundant-debug-all"
|
||||||
|
}]
|
@ -0,0 +1,12 @@
|
|||||||
|
{@debug _, name}
|
||||||
|
<div>Hello {name}!</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
name: 'World'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
Loading…
Reference in new issue