Skip to content

Commit

Permalink
fix(eslint-plugin): [explicit-module-boundary-types] fix default option
Browse files Browse the repository at this point in the history
  • Loading branch information
sosukesuzuki committed Apr 12, 2020
1 parent 67c104a commit d21d52b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -96,7 +96,7 @@ const defaults = {
allowTypedFunctionExpressions: true,
allowHigherOrderFunctions: true,
allowedNames: [],
shouldTrackReferences: false,
shouldTrackReferences: true,
};
```

Expand Down
Expand Up @@ -68,7 +68,7 @@ export default util.createRule<Options, MessageIds>({
allowHigherOrderFunctions: true,
allowDirectConstAssertionInArrowFunctions: true,
allowedNames: [],
shouldTrackReferences: false,
shouldTrackReferences: true,
},
],
create(context, [options]) {
Expand Down

0 comments on commit d21d52b

Please sign in to comment.