Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: tweaking our use of the no-use-before-define rule in TS #338

Merged
merged 1 commit into from
Mar 10, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,10 @@ module.exports = {
// The stock `no-unused-vars` ESlint rule doesn't play with TS.
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': ['error'],

// The stock `no-use-before-define` ESLint rule throws errors when TS interfaces, types, and
// enums are used before they're defined -- eventhough in TS that's OK.
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': ['error'],
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

},
};