File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -117,9 +117,8 @@ export default iterateJsdoc(({
117
117
} ) => {
118
118
if ( semver . gte ( ESLint . version , '8.0.0' ) ) {
119
119
report (
120
- 'This rule cannot yet be supported for ESLint 8; you ' +
121
- 'should either downgrade to ESLint 7 or disable this rule. The ' +
122
- 'possibility for ESLint 8 support is being tracked at https://github.com/eslint/eslint/issues/14745' ,
120
+ 'This rule does not work for ESLint 8+; you should disable this rule and use' +
121
+ 'the processor mentioned in the docs.' ,
123
122
null ,
124
123
{
125
124
column : 1 ,
Original file line number Diff line number Diff line change @@ -29,8 +29,7 @@ const main = async () => {
29
29
30
30
for ( const ruleName of process . env . npm_config_rule ? process . env . npm_config_rule . split ( ',' ) : ruleNames ) {
31
31
if ( semver . gte ( ESLint . version , '8.0.0' ) && ruleName === 'check-examples' ) {
32
- // TODO: This rule cannot yet be supported for ESLint 8;
33
- // The possibility for ESLint 8 support is being tracked at https://github.com/eslint/eslint/issues/14745
32
+ // Uses the processor instead for higher versions
34
33
continue ;
35
34
}
36
35
You can’t perform that action at this time.
0 commit comments