Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
support for terrafrom
Browse files Browse the repository at this point in the history
  • Loading branch information
bummoblizard committed Dec 21, 2021
1 parent 779bc11 commit 6100423
Show file tree
Hide file tree
Showing 4 changed files with 910 additions and 0 deletions.
75 changes: 75 additions & 0 deletions configurations/terraform.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
{
"comments": {
"lineComment": "#",
"blockComment": [
"/*",
"*/"
]
},
"brackets": [
[
"{",
"}"
],
[
"[",
"]"
],
[
"(",
")"
]
],
"autoClosingPairs": [
{
"open": "{",
"close": "}"
},
{
"open": "[",
"close": "]"
},
{
"open": "(",
"close": ")"
},
{
"open": "\"",
"close": "\"",
"notIn": [
"string"
]
},
{
"open": "'",
"close": "'",
"notIn": [
"string",
"comment"
]
}
],
"autoCloseBefore": ";:.,=}])> \n\t\"",
"surroundingPairs": [
[
"{",
"}"
],
[
"[",
"]"
],
[
"(",
")"
],
[
"\"",
"\""
],
[
"'",
"'"
]
]
}
Loading

0 comments on commit 6100423

Please sign in to comment.