Cloudformation

Level up your AWS CloudFormation game

Add the following user setting to enable the extra highlighting of the block located at the current cursor position.

{
    "indenticator.inner.showHighlight": true
}
Also see: https://editorconfig.org/

Inside your Git repositories that contain your CloudFormation templates, create a .editorconfig file at the root directory that looks like this:

# .editorconfig

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# Keeps CloudFormation YAML files standard
[*.yaml]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
python -m pip install cfn-lint

Last updated

Was this helpful?