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.
1 parent d00e9e6 commit 5e25a5eCopy full SHA for 5e25a5e
lib/util/Components.js
@@ -218,7 +218,8 @@ function componentRule(rule, context) {
218
let comment;
219
// Sometimes the passed node may not have been parsed yet by eslint, and this function call crashes.
220
// Can be removed when eslint sets "parent" property for all nodes on initial AST traversal: https://github.com/eslint/eslint-scope/issues/27
221
- // Remove try/catch when https://github.com/eslint/eslint-scope/issues/27 is implemented.
+ // eslint-disable-next-line no-warning-comments
222
+ // FIXME: Remove try/catch when https://github.com/eslint/eslint-scope/issues/27 is implemented.
223
try {
224
comment = sourceCode.getJSDocComment(node);
225
} catch (e) {
0 commit comments