Source file tm_grammar_codeowners.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
let lang_id = "codeowners"
let json = {json|{
"displayName": "CODEOWNERS",
"name": "codeowners",
"patterns": [
{
"include": "#comment"
},
{
"include": "#pattern"
},
{
"include": "#owner"
}
],
"repository": {
"comment": {
"patterns": [
{
"begin": "^\\s*#",
"captures": {
"0": {
"name": "punctuation.definition.comment.codeowners"
}
},
"end": "$",
"name": "comment.line.codeowners"
}
]
},
"owner": {
"match": "\\S*@\\S+",
"name": "storage.type.function.codeowners"
},
"pattern": {
"match": "^\\s*(\\S+)",
"name": "variable.other.codeowners"
}
},
"scopeName": "text.codeowners"
}|json}