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
@@ -294,7 +294,7 @@ These rules relate to better ways of doing things to help you avoid problems:
294
294
|:--------|:------------|:---|
295
295
|[svelte/block-lang](https://sveltejs.github.io/eslint-plugin-svelte/rules/block-lang/)| disallows the use of languages other than those specified in the configuration for the lang attribute of `<script>` and `<style>` blocks. |:bulb:|
296
296
|[svelte/button-has-type](https://sveltejs.github.io/eslint-plugin-svelte/rules/button-has-type/)| disallow usage of button without an explicit type attribute ||
297
-
|[svelte/no-at-debug-tags](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-at-debug-tags/)| disallow the use of `{@debug}`|:star:|
297
+
|[svelte/no-at-debug-tags](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-at-debug-tags/)| disallow the use of `{@debug}`|:star::bulb:|
298
298
|[svelte/no-ignored-unsubscribe](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-ignored-unsubscribe/)| disallow ignoring the unsubscribe method returned by the `subscribe()` on Svelte stores. ||
299
299
|[svelte/no-immutable-reactive-statements](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-immutable-reactive-statements/)| disallow reactive statements that don't reference reactive values. |:star:|
300
300
|[svelte/no-inline-styles](https://sveltejs.github.io/eslint-plugin-svelte/rules/no-inline-styles/)| disallow attributes and directives that produce inline styles ||
|[svelte/block-lang](./rules/block-lang.md)| disallows the use of languages other than those specified in the configuration for the lang attribute of `<script>` and `<style>` blocks. |:bulb:|
53
53
|[svelte/button-has-type](./rules/button-has-type.md)| disallow usage of button without an explicit type attribute ||
54
-
|[svelte/no-at-debug-tags](./rules/no-at-debug-tags.md)| disallow the use of `{@debug}`|:star:|
54
+
|[svelte/no-at-debug-tags](./rules/no-at-debug-tags.md)| disallow the use of `{@debug}`|:star::bulb:|
55
55
|[svelte/no-ignored-unsubscribe](./rules/no-ignored-unsubscribe.md)| disallow ignoring the unsubscribe method returned by the `subscribe()` on Svelte stores. ||
56
56
|[svelte/no-immutable-reactive-statements](./rules/no-immutable-reactive-statements.md)| disallow reactive statements that don't reference reactive values. |:star:|
57
57
|[svelte/no-inline-styles](./rules/no-inline-styles.md)| disallow attributes and directives that produce inline styles ||
Copy file name to clipboardExpand all lines: docs/rules/no-at-debug-tags.md
+1
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@ since: 'v0.0.1'
11
11
> disallow the use of `{@debug}`
12
12
13
13
-:gear: This rule is included in `"plugin:svelte/recommended"`.
14
+
-:bulb: Some problems reported by this rule are manually fixable by editor [suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
0 commit comments