Unfortunately, IntelliJ doesn't work with this .eslintrc.js configuration:
plugins: [
'@typescript-eslint',
...
]
even though this is supposed to replace the deprecated 'typescript' plugin.
If @typescript-eslint gets an update, try removing plugin: 'typescript' and see if IntelliJ works. If it does, then just yarn remove eslint-plugin-typescript from the client project, and we're all updated!
fe031e8 was just a temporary fix that adds both plugins. But the real fix is to remove the deprecated eslint-plugin-typescript dependency so only the new one is used
Unfortunately, IntelliJ doesn't work with this
.eslintrc.js
configuration:even though this is supposed to replace the deprecated
'typescript'
plugin.If
@typescript-eslint
gets an update, try removingplugin: 'typescript'
and see if IntelliJ works. If it does, then justyarn remove eslint-plugin-typescript
from theclient
project, and we're all updated!