VS Code: Change color of squiggly underline for Lint

后端 未结 4 1922
[愿得一人]
[愿得一人] 2021-01-01 11:10

My configurations currently show the same red squiggly line for Typescript errors and TSLint warnings.

I am using TSLint extension for Visual Studio Code but the con

相关标签:
4条回答
  • 2021-01-01 11:53

    There is a setting to have the tslint extension return warnings (green) instead of errors (red): "tslint.alwaysShowRuleFailuresAsWarnings": true

    Also, you can change your tslint config to determine which issues are errors, and which are warnings.

    0 讨论(0)
  • 2021-01-01 11:59

    For eslint I was able to just set specific rules to warning, which I think is a better way to do it rather than trying to set all to one level. The unused vars was the one that really annoyed me, so:

    in the .eslintrc file...

    {
        "rules" : {
        "no-unused-vars": "warn"
    }
    
    0 讨论(0)
  • 2021-01-01 12:02

    VSCode v1.17 added the ability to set the color of warnings ("squiggles") and info:

    Modify warning and info squiggles.

    "workbench.colorCustomizations": {
      "editorWarning.foreground": "#ff0",
      "editorInfo.foreground": "#00f"
    }
    
    0 讨论(0)
  • 2021-01-01 12:02

    This will fix your problem.

    Add "defaultSeverity": "warning"in tslint.json.

    Reference: Change underline color to avoid confusion with compiler errors

    0 讨论(0)
提交回复
热议问题