PSRule-vscode/syntaxes/comments.json

16 строки
333 B
JSON
Исходник Обычный вид История

{
2023-07-07 10:26:07 +03:00
"scopeName": "PSRule-powershell-comments",
"injectionSelector": "L:source.powershell",
"patterns": [
{
"include": "#synopsis-comment"
}
2023-07-07 10:26:07 +03:00
],
"repository": {
"synopsis-comment": {
"match": "(?<=^# )(Synopsis:|Description:)(?= )",
"name": "keyword.operator.documentation.powershell"
}
}
}