/vscode-terraform-comments-beautifier

VSCode Extension to beautify comments

Primary LanguageTypeScript

terraform-comments-beautifier README

Release Status

This extension beautifies comments in terraform files. Changes them from:

# Terraform Version
terraform {
  required_version = ">= 0.11.0"
}

to:

###################
# Terraform Version
###################
terraform {
  required_version = ">= 0.11.0"
}

Features

Adds explorer menu, editor menu and a command to beautify the selected document.