Disable TSLint in VSCode

后端 未结 6 633
太阳男子
太阳男子 2021-01-31 06:59

So this feels like this should be such an easy task but it\'s starting to drive me insane. I can\'t seem to turn off TSLint or TS or whatever it is that gives me these errors. I

6条回答
  •  情书的邮戳
    2021-01-31 07:43

    Most of the answers turn off the duplicate errors for JavaScript, not TypeScript, like the OP asked about. What worked for me was:

    1. Uninstall the TSLint vscode extension
    2. Install the ESLint vscode extension
    3. Finish configuring ESLint for TypeScript (will now have both "ts errors" and "eslint errors" at this point like the OP).
    4. Open settings.json and add this to the bottom: "typescript.validate.enable": false

    At first, I was concerned that this option would turn off all typescript validation, including eslint, but fortunately that wasn't the case. It only disables the built-in vscode typescript validation and leaves eslint alone.

    The most important part is adding "typescript.validate.enable": false to settings.json

    Or, instead of manually editing settings.json, another way is to uncheck the box in the settings menu (ctrl+'):

    FYI, you can add it to either your User settings.json (applies to all your projects) or your Workspace settings.json (only applies to the current project).

提交回复
热议问题