Vscode-terraform: Add option to disable linting

Created on 3 Jun 2019  路  1Comment  路  Source: hashicorp/vscode-terraform

While the work on getting terraform 0.12 working, it would be nice to have the option to disable linting but keep all the other features that this plugin provides.

help wanted

Most helpful comment

you can disable these feature by having this config:

{
  "terraform.indexing": {
    "enabled": false,
    "liveIndexing": false,
    "exclude": ["**/*"]
  },
}

the exclude part is the important part of the config, in the meantime if somebody can make a PR which disables these features by default that would be nice.

>All comments

you can disable these feature by having this config:

{
  "terraform.indexing": {
    "enabled": false,
    "liveIndexing": false,
    "exclude": ["**/*"]
  },
}

the exclude part is the important part of the config, in the meantime if somebody can make a PR which disables these features by default that would be nice.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

chrisgallivan picture chrisgallivan  路  4Comments

QuinnStevens picture QuinnStevens  路  6Comments

domenjesenovec picture domenjesenovec  路  6Comments

mdschweda picture mdschweda  路  3Comments

renanaraujo picture renanaraujo  路  5Comments