File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed
docs/examples/eslint-plugin-test
test/lib/generate/__snapshots__ Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ This plugin is for x purpose.
27
27
🔧 Automatically fixable by the [ ` --fix ` CLI option] ( https://eslint.org/docs/user-guide/command-line-interface#--fix ) .\
28
28
💡 Manually fixable by [ editor suggestions] ( https://eslint.org/docs/latest/use/core-concepts#rule-suggestions ) .\
29
29
⚙️ Has configuration options.\
30
- 💭 Requires type information.\
30
+ 💭 Requires [ type information] ( https://typescript-eslint.io/linting/typed-linting ) .\
31
31
🗂️ The type of rule.\
32
32
❗ Identifies problems that could cause errors or unexpected behavior.\
33
33
📖 Identifies potential improvements.\
Original file line number Diff line number Diff line change 6
6
7
7
⚙️ This rule is configurable.
8
8
9
- 💭 This rule requires type information.
9
+ 💭 This rule requires [ type information] ( https://typescript-eslint.io/linting/typed-linting ) .
10
10
11
11
❗ This rule identifies problems that could cause errors or unexpected behavior.
12
12
Original file line number Diff line number Diff line change 4
4
5
5
💡 This rule is manually fixable by [ editor suggestions] ( https://eslint.org/docs/latest/use/core-concepts#rule-suggestions ) .
6
6
7
- 💭 This rule requires type information.
7
+ 💭 This rule requires [ type information] ( https://typescript-eslint.io/linting/typed-linting ) .
8
8
9
9
📖 This rule identifies potential improvements.
10
10
Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ const RULE_NOTICES: {
253
253
[ NOTICE_TYPE . HAS_SUGGESTIONS ] : NOTICE_HAS_SUGGESTIONS ,
254
254
255
255
[ NOTICE_TYPE . OPTIONS ] : `${ EMOJI_OPTIONS } This rule is configurable.` ,
256
- [ NOTICE_TYPE . REQUIRES_TYPE_CHECKING ] : `${ EMOJI_REQUIRES_TYPE_CHECKING } This rule requires type information.` ,
256
+ [ NOTICE_TYPE . REQUIRES_TYPE_CHECKING ] : `${ EMOJI_REQUIRES_TYPE_CHECKING } This rule requires [ type information](https://typescript-eslint.io/linting/typed-linting) .` ,
257
257
} ;
258
258
259
259
/**
Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ const LEGENDS: {
144
144
[ COLUMN_TYPE . NAME ] : undefined ,
145
145
[ COLUMN_TYPE . OPTIONS ] : [ `${ EMOJI_OPTIONS } Has configuration options.` ] ,
146
146
[ COLUMN_TYPE . REQUIRES_TYPE_CHECKING ] : [
147
- `${ EMOJI_REQUIRES_TYPE_CHECKING } Requires type information.` ,
147
+ `${ EMOJI_REQUIRES_TYPE_CHECKING } Requires [ type information](https://typescript-eslint.io/linting/typed-linting) .` ,
148
148
] ,
149
149
} ;
150
150
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ exports[`generate (--rule-list-columns) shows column and notice for requiresType
48
48
49
49
💼 Configurations enabled in.\\
50
50
🌐 Set in the \` all\` configuration.\\
51
- 💭 Requires type information.
51
+ 💭 Requires [ type information](https://typescript-eslint.io/linting/typed-linting) .
52
52
53
53
| Name | Description | 💼 | 💭 |
54
54
| :----------------------------- | :--------------------- | :- | :- |
@@ -70,7 +70,7 @@ exports[`generate (--rule-list-columns) shows column and notice for requiresType
70
70
exports [` generate (--rule-list-columns) shows column and notice for requiresTypeChecking updates the documentation 3` ] = `
71
71
"# Description of no-bar (\` test/no-bar\` )
72
72
73
- 💭 This rule requires type information.
73
+ 💭 This rule requires [ type information](https://typescript-eslint.io/linting/typed-linting) .
74
74
75
75
<!-- end auto-generated rule header -->
76
76
"
You can’t perform that action at this time.
0 commit comments