Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ module.exports = {
'no-const-assign': 'error',
// Disallow duplicate name in class members
'no-dupe-class-members': 'error',
// Disallow duplicate module imports
'no-duplicate-imports': 'error',
// Disallow duplicate module imports (disabled, as import/no-duplicates does the same job but better)
'no-duplicate-imports': 'off',
Copy link
Member

Choose a reason for hiding this comment

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

❤️ I just ran into this and figured I was going to have to submit a PR for that rule. Awesome that we already had a better rule in place!

// Disallow use of the new operator with the Symbol object
'no-new-symbol': 'error',
// Disallow to use this/super before super() calling in constructors.
Expand Down