You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/eslint-plugin-svelte/tests/fixtures/rules/prefer-destructured-store-props/invalid/fixer-test01-errors.yaml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
line: 5
3
3
column: 8
4
4
suggestions:
5
-
- desc: 'Using destructuring like $: ({ $foo } = $store); will run faster'
5
+
- desc: "Using destructuring like $: ({ $foo } = $store); will run faster"
6
6
messageId: fixUseDestructuring
7
7
output: |
8
8
<script>
@@ -20,7 +20,7 @@
20
20
line: 6
21
21
column: 7
22
22
suggestions:
23
-
- desc: 'Using destructuring like $: ({ bar } = $store); will run faster'
23
+
- desc: "Using destructuring like $: ({ bar } = $store); will run faster"
24
24
messageId: fixUseDestructuring
25
25
output: |
26
26
<script>
@@ -38,7 +38,7 @@
38
38
line: 7
39
39
column: 7
40
40
suggestions:
41
-
- desc: 'Using destructuring like $: ({ baz } = $store); will run faster'
41
+
- desc: "Using destructuring like $: ({ baz } = $store); will run faster"
42
42
messageId: fixUseDestructuring
43
43
output: |
44
44
<script>
@@ -56,7 +56,7 @@
56
56
line: 8
57
57
column: 7
58
58
suggestions:
59
-
- desc: 'Using destructuring like $: ({ var } = $store); will run faster'
59
+
- desc: "Using destructuring like $: ({ var } = $store); will run faster"
60
60
messageId: fixUseDestructuring
61
61
output: |
62
62
<script>
@@ -74,7 +74,7 @@
74
74
line: 9
75
75
column: 8
76
76
suggestions:
77
-
- desc: 'Using destructuring like $: ({ null } = $store); will run faster'
77
+
- desc: "Using destructuring like $: ({ null } = $store); will run faster"
78
78
messageId: fixUseDestructuring
79
79
output: |
80
80
<script>
@@ -92,7 +92,7 @@
92
92
line: 10
93
93
column: 13
94
94
suggestions:
95
-
- desc: 'Using destructuring like $: ({ undefined } = $store); will run faster'
95
+
- desc: "Using destructuring like $: ({ undefined } = $store); will run faster"
Copy file name to clipboardExpand all lines: packages/eslint-plugin-svelte/tests/fixtures/rules/prefer-destructured-store-props/invalid/member01-errors.yaml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
line: 5
3
3
column: 11
4
4
suggestions:
5
-
- desc: 'Using destructuring like $: ({ foo } = $store); will run faster'
5
+
- desc: "Using destructuring like $: ({ foo } = $store); will run faster"
6
6
messageId: fixUseDestructuring
7
7
output: |
8
8
<script>
@@ -16,7 +16,7 @@
16
16
line: 6
17
17
column: 11
18
18
suggestions:
19
-
- desc: 'Using destructuring like $: ({ foo } = $store); will run faster'
19
+
- desc: "Using destructuring like $: ({ foo } = $store); will run faster"
Copy file name to clipboardExpand all lines: packages/eslint-plugin-svelte/tests/fixtures/rules/prefer-destructured-store-props/invalid/member02-errors.yaml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@
19
19
20
20
baz.foo: {bbb.foo}
21
21
baz.bar: {$store.baz.bar}
22
-
- desc: 'Using destructuring like $: ({ foo } = $store); will run faster'
22
+
- desc: "Using destructuring like $: ({ foo } = $store); will run faster"
23
23
messageId: fixUseDestructuring
24
24
output: |
25
25
<script>
@@ -58,7 +58,7 @@
58
58
59
59
baz.foo: {bbb.foo}
60
60
baz.bar: {$store.baz.bar}
61
-
- desc: 'Using destructuring like $: ({ bar } = $store); will run faster'
61
+
- desc: "Using destructuring like $: ({ bar } = $store); will run faster"
62
62
messageId: fixUseDestructuring
63
63
output: |
64
64
<script>
@@ -97,7 +97,7 @@
97
97
98
98
baz.foo: {bbb.foo}
99
99
baz.bar: {bbb.bar}
100
-
- desc: 'Using destructuring like $: ({ baz } = $store); will run faster'
100
+
- desc: "Using destructuring like $: ({ baz } = $store); will run faster"
Copy file name to clipboardExpand all lines: packages/eslint-plugin-svelte/tests/fixtures/rules/prefer-destructured-store-props/invalid/member03-errors.yaml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
line: 9
3
3
column: 11
4
4
suggestions:
5
-
- desc: 'Using destructuring like $: ({ foo } = $store); will run faster'
5
+
- desc: "Using destructuring like $: ({ foo } = $store); will run faster"
6
6
messageId: fixUseDestructuring
7
7
output: |
8
8
<script>
@@ -25,7 +25,7 @@
25
25
line: 12
26
26
column: 11
27
27
suggestions:
28
-
- desc: 'Using destructuring like $: ({ bar } = $store); will run faster'
28
+
- desc: "Using destructuring like $: ({ bar } = $store); will run faster"
29
29
messageId: fixUseDestructuring
30
30
output: |
31
31
<script>
@@ -48,7 +48,7 @@
48
48
line: 15
49
49
column: 11
50
50
suggestions:
51
-
- desc: 'Using destructuring like $: ({ baz } = $store); will run faster'
51
+
- desc: "Using destructuring like $: ({ baz } = $store); will run faster"
0 commit comments