I have a big web app made by both legacy JavaScript code (including eslint) and new TypeScript code (including tslint).
My problem is that my IDE (WebStorm) is automatically applying both linters to all files, so in TypeScript I get errors from eslint that I should not get.
How can I make sure eslint is applied only to *.js files and not to the *.ts files (that instead should only be checked by tslint) ?