Skip to content

Commit

Permalink
docs(eslint-plugin): [no-redeclare] fix type/variable names of base o…
Browse files Browse the repository at this point in the history
…ptions (#2568)
  • Loading branch information
susisu committed Sep 15, 2020
1 parent 41d4a47 commit 33522b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/eslint-plugin/docs/rules/no-redeclare.md
Expand Up @@ -21,12 +21,12 @@ See [`eslint/no-redeclare` options](https://eslint.org/docs/rules/no-redeclare#o
This rule adds the following options:

```ts
interface Options extends BaseNoShadowOptions {
interface Options extends BaseNoRedeclareOptions {
ignoreDeclarationMerge?: boolean;
}

const defaultOptions: Options = {
...baseNoShadowDefaultOptions,
...baseNoRedeclareDefaultOptions,
ignoreDeclarationMerge: true,
};
```
Expand Down

0 comments on commit 33522b4

Please sign in to comment.