Skip to content

Commit

Permalink
feat(no-return-void): implicit types are now checked by default
Browse files Browse the repository at this point in the history
BREAKING CHANGE: implicit types are now checked by default
  • Loading branch information
RebeccaStevens committed Aug 1, 2021
1 parent a6bf6b1 commit 1a40394
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/rules/no-return-void.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ The default options:
{
allowNull: true,
allowUndefined: true,
ignoreImplicit: true,
ignoreImplicit: false,
}
```

Expand Down
2 changes: 1 addition & 1 deletion src/rules/no-return-void.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const schema: JSONSchema4 = [
const defaultOptions: Options = {
allowNull: true,
allowUndefined: true,
ignoreImplicit: true,
ignoreImplicit: false,
};

// The possible error messages.
Expand Down

0 comments on commit 1a40394

Please sign in to comment.