Skip to content

Commit 86f356f

Browse files
committed
Misc changes
1 parent e85ff13 commit 86f356f

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

jsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,5 +110,7 @@
110110
/* Completeness */
111111
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
112112
"skipLibCheck": true /* Skip type checking all .d.ts files. */
113-
}
113+
},
114+
"include": ["src/**/*.js", "tests/**/*.js"],
115+
"exclude": ["src/**/*.test.js", "node_modules", "dist", "examples"]
114116
}

src/rules/check-throws-tag-type.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -674,6 +674,7 @@ module.exports = createRule({
674674
callbackNode =
675675
/** @type {import('@typescript-eslint/utils').TSESTree.FunctionLike | null} */
676676
(declaration);
677+
break;
677678
}
678679
default:
679680
break;

src/rules/no-undocumented-throws.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -600,6 +600,7 @@ module.exports = createRule({
600600
callbackNode =
601601
/** @type {import('@typescript-eslint/utils').TSESTree.FunctionLike | null} */
602602
(declaration);
603+
break;
603604
}
604605
default:
605606
break;

0 commit comments

Comments
 (0)