We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
report
1 parent c639724 commit e8cda0cCopy full SHA for e8cda0c
src/rules/checkExamples.js
@@ -86,12 +86,12 @@ export default iterateJsdoc(({
86
globalState,
87
}) => {
88
if (semver.gte(ESLint.version, '8.0.0')) {
89
- report({
90
- loc: {start: {column: 1, line: 1}},
91
- message: 'This rule cannot yet be supported for ESLint 8; you ' +
+ report(
+ 'This rule cannot yet be supported for ESLint 8; you ' +
92
'should either downgrade to ESLint 7 or disable this rule. The ' +
93
'possibility for ESLint 8 support is being tracked at https://github.com/eslint/eslint/issues/14745',
94
- });
+ {column: 1, line: 1},
+ );
95
96
return;
97
}
0 commit comments