Skip to content

Commit 7199a2b

Browse files
committed
revert
1 parent 26387bd commit 7199a2b

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed
-8 KB
Binary file not shown.

Diff for: packages/eslint-plugin-svelte/tests/fixtures/rules/require-store-reactive-access/invalid/calc01-errors.yaml

-5
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,6 @@
2323
line: 13
2424
column: 15
2525
suggestions: null
26-
- message: Unused eslint-disable directive (no problems were reported from
27-
'no-implicit-coercion').
28-
line: 14
29-
column: 2
30-
suggestions: null
3126
- message: Use the $ prefix or the get function to access reactive values instead
3227
of accessing the raw store.
3328
line: 15

Diff for: packages/eslint-plugin-svelte/tests/fixtures/rules/require-store-reactive-access/invalid/calc01-output.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
// UnaryExpression
1313
console.log(-$store);
14-
14+
// eslint-disable-next-line no-implicit-coercion -- test
1515
console.log(+$store);
1616
console.log(!store);
1717
console.log(~$store);

0 commit comments

Comments
 (0)