Skip to content

Commit 5387259

Browse files
feat(no-return-void): implicit types are now checked by default
BREAKING CHANGE: implicit types are now checked by default
1 parent 999cc02 commit 5387259

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/rules/no-return-void.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The default options:
4949
{
5050
allowNull: true,
5151
allowUndefined: true,
52-
ignoreImplicit: true,
52+
ignoreImplicit: false,
5353
}
5454
```
5555

src/rules/no-return-void.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const schema: JSONSchema4 = [
4646
const defaultOptions: Options = {
4747
allowNull: true,
4848
allowUndefined: true,
49-
ignoreImplicit: true,
49+
ignoreImplicit: false,
5050
};
5151

5252
// The possible error messages.

0 commit comments

Comments
 (0)