Merge pull request #92 from tatsuro-m/golang

Add support for Go
This commit is contained in:
Alastair Mooney 2021-11-24 13:39:17 +00:00 committed by GitHub
commit 9e10e5f156
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 deletions

View File

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

View File

@ -513,5 +513,21 @@
}
}
]
},
{
"language": "Go",
"markers": [
{
"type": "line",
"pattern": "//"
},
{
"type": "block",
"pattern": {
"start": "/\\*",
"end": "\\*/"
}
}
]
}
]