Skip to content

Commit fe6aa71

Browse files
committed
chore: tidy up
1 parent 91bd043 commit fe6aa71

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/rules/require-store-callbacks-use-set-param.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
1-
// import { AST } from "svelte-eslint-parser"
21
import { createRule } from "../utils"
32
import { extractStoreReferences } from "./reference-helpers/svelte-store"
43

54
export default createRule("require-store-callbacks-use-set-param", {
65
meta: {
76
docs: {
8-
description: "",
7+
description: "store callbacks must use `set` param",
98
category: "Possible Errors",
109
recommended: false,
1110
},
1211
schema: [],
1312
messages: {
1413
unexpected: "Store callbacks must use `set` param.",
1514
},
16-
type: "suggestion", // "problem", or "layout",
15+
type: "suggestion",
1716
},
1817
create(context) {
1918
return {

0 commit comments

Comments
 (0)