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: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -323,7 +323,7 @@ These rules relate to style guidelines, and are therefore quite subjective:
323
323
| Rule ID | Description ||
324
324
|:--------|:------------|:---|
325
325
|[svelte/consistent-selector-style](https://sveltejs.github.io/eslint-plugin-svelte/rules/consistent-selector-style/)| enforce a consistent style for CSS selectors ||
326
-
|[svelte/derived-has-same-inputs-outputs](https://sveltejs.github.io/eslint-plugin-svelte/rules/derived-has-same-inputs-outputs/)| derived store should use same variable names between values and callback ||
326
+
|[svelte/derived-has-same-inputs-outputs](https://sveltejs.github.io/eslint-plugin-svelte/rules/derived-has-same-inputs-outputs/)| derived store should use same variable names between values and callback |:bulb:|
327
327
|[svelte/first-attribute-linebreak](https://sveltejs.github.io/eslint-plugin-svelte/rules/first-attribute-linebreak/)| enforce the location of first attribute |:wrench:|
328
328
|[svelte/html-closing-bracket-new-line](https://sveltejs.github.io/eslint-plugin-svelte/rules/html-closing-bracket-new-line/)| Require or disallow a line break before tag's closing brackets |:wrench:|
329
329
|[svelte/html-closing-bracket-spacing](https://sveltejs.github.io/eslint-plugin-svelte/rules/html-closing-bracket-spacing/)| require or disallow a space before tag's closing brackets |:wrench:|
|[svelte/consistent-selector-style](./rules/consistent-selector-style.md)| enforce a consistent style for CSS selectors ||
83
-
|[svelte/derived-has-same-inputs-outputs](./rules/derived-has-same-inputs-outputs.md)| derived store should use same variable names between values and callback ||
83
+
|[svelte/derived-has-same-inputs-outputs](./rules/derived-has-same-inputs-outputs.md)| derived store should use same variable names between values and callback |:bulb:|
84
84
|[svelte/first-attribute-linebreak](./rules/first-attribute-linebreak.md)| enforce the location of first attribute |:wrench:|
85
85
|[svelte/html-closing-bracket-new-line](./rules/html-closing-bracket-new-line.md)| Require or disallow a line break before tag's closing brackets |:wrench:|
86
86
|[svelte/html-closing-bracket-spacing](./rules/html-closing-bracket-spacing.md)| require or disallow a space before tag's closing brackets |:wrench:|
Copy file name to clipboardExpand all lines: docs/rules/derived-has-same-inputs-outputs.md
+2
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,8 @@ since: 'v2.8.0'
10
10
11
11
> derived store should use same variable names between values and callback
12
12
13
+
-:bulb: Some problems reported by this rule are manually fixable by editor [suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
14
+
13
15
## :book: Rule Details
14
16
15
17
This rule reports where variable names and callback function's argument names are different.
0 commit comments