Merge pull request #93 from turingbeing/add-hcl-support

Add `HCL`
This commit is contained in:
Alastair Mooney 2021-12-01 14:49:44 +00:00 committed by GitHub
commit 283da1a7cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 0 deletions

View File

@ -76,6 +76,7 @@ There are additional inputs if you want to be able to assign issues to projects.
* Elixir * Elixir
* Go * Go
* Handlebars * Handlebars
* HCL
* HTML * HTML
* Java * Java
* JavaScript * JavaScript

View File

@ -529,5 +529,25 @@
} }
} }
] ]
},
{
"language": "HCL",
"markers" : [
{
"type": "line",
"pattern": "#"
},
{
"type": "line",
"pattern": "//"
},
{
"type": "block",
"pattern": {
"start": "/\\*",
"end": "\\*/"
}
}
]
} }
] ]