Hello all,
After installing and configuring SublimeLinter with eslint, ESlint is linting my React/TypeScript project by showing some warnings such as “no unused var”; however, when I compared side-by-side the same page of the same project between Sublime Text 4 and VSCode, eslint on VSCode showed additional warning for
Property 'label' is missing in type '{ xx: xxx, yy: yyyy }' but required in type 'TextArea'.ts(2741)
TextArea.tsx(20, 3): 'label' is declared here.
but Sublime Text eslint does not show any warning for missing a prop/type (TextArea components should have label prop along with others. Warning shows that I didn’t add a label prop for the TextArea component).
Any suggestion that I can configure it to display that checking on Sublime Text?