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: lib/rule-doc-notices.ts
+2-2
Original file line number
Diff line number
Diff line change
@@ -81,7 +81,7 @@ function configsToNoticeSentence(
81
81
82
82
// A few individual notices declared here just so they can be reused in multiple notices.
83
83
constNOTICE_FIXABLE=`${EMOJI_FIXABLE} This rule is automatically fixable by the [\`--fix\` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).`;
84
-
constNOTICE_HAS_SUGGESTIONS=`${EMOJI_HAS_SUGGESTIONS} This rule is manually fixable by [editor suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).`;
84
+
constNOTICE_HAS_SUGGESTIONS=`${EMOJI_HAS_SUGGESTIONS} This rule is manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).`;
85
85
86
86
/**
87
87
* An object containing the text for each notice type (as a string or function to generate the string).
return`${EMOJI_FIXABLE}${EMOJI_HAS_SUGGESTIONS} This rule is automatically fixable by the [\`--fix\` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix) and manually fixable by [editor suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).`;
242
+
return`${EMOJI_FIXABLE}${EMOJI_HAS_SUGGESTIONS} This rule is automatically fixable by the [\`--fix\` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix) and manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).`;
// A few individual legends declared here just so they can be reused in multiple legends.
30
30
constLEGEND_FIXABLE=`${EMOJI_FIXABLE} Automatically fixable by the [\`--fix\` CLI option](https://eslint.org/docs/user-guide/command-line-interface#--fix).`;
31
-
constLEGEND_HAS_SUGGESTIONS=`${EMOJI_HAS_SUGGESTIONS} Manually fixable by [editor suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).`;
31
+
constLEGEND_HAS_SUGGESTIONS=`${EMOJI_HAS_SUGGESTIONS} Manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).`;
32
32
33
33
/**
34
34
* An object containing the legends for each column (as a string or function to generate the string).
💼 This rule is enabled in the following configs: 🌐 \`all\`, ✅ \`recommended\`.
30
30
31
-
🔧💡 This rule is automatically fixable by the [\`--fix\` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix) and manually fixable by [editor suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
31
+
🔧💡 This rule is automatically fixable by the [\`--fix\` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix) and manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).
Copy file name to clipboardExpand all lines: test/lib/generate/__snapshots__/option-rule-list-columns-test.ts.snap
+3-3
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ exports[`generate (--rule-list-columns) basic shows the right columns and legend
4
4
"## Rules
5
5
<!-- begin auto-generated rules list -->
6
6
7
-
💡 Manually fixable by [editor suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).\\
7
+
💡 Manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).\\
8
8
🔧 Automatically fixable by the [\`--fix\` CLI option](https://eslint.org/docs/user-guide/command-line-interface#--fix).
9
9
10
10
| 💡 | 🔧 | Name |
@@ -20,7 +20,7 @@ exports[`generate (--rule-list-columns) basic shows the right columns and legend
20
20
21
21
❌ This rule is deprecated.
22
22
23
-
🔧💡 This rule is automatically fixable by the [\`--fix\` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix) and manually fixable by [editor suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
23
+
🔧💡 This rule is automatically fixable by the [\`--fix\` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix) and manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).
24
24
25
25
<!-- end auto-generated rule header -->
26
26
"
@@ -31,7 +31,7 @@ exports[`generate (--rule-list-columns) consolidated fixableAndHasSuggestions co
31
31
<!-- begin auto-generated rules list -->
32
32
33
33
🔧 Automatically fixable by the [\`--fix\` CLI option](https://eslint.org/docs/user-guide/command-line-interface#--fix).\\
34
-
💡 Manually fixable by [editor suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
34
+
💡 Manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).
0 commit comments