I am faced with a large web application that consists of legacy JavaScript code (with eslint) and new TypeScript code (with tslint).
The issue I am encountering is that my IDE (WebStorm) is running both linters on all files, causing me to receive eslint errors in TypeScript files where they should not be present.
Is there a way for me to configure eslint to only run on *.js files, while ensuring that *.ts files are checked exclusively by tslint?