tm-grammars 1.10.0 → 1.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/NOTICE CHANGED
@@ -1968,6 +1968,33 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1968
1968
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1969
1969
  SOFTWARE.
1970
1970
 
1971
+ =========================================================================================================
1972
+ Files: codeowners.json
1973
+ License: https://raw.githubusercontent.com/jasonnutter/vscode-codeowners/master/LICENSE.txt
1974
+ SPDX: MIT
1975
+ ---------------------------------------------------------------------------------------------------------
1976
+ MIT License
1977
+
1978
+ Copyright (c) 2016 Jason Nutter
1979
+
1980
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1981
+ of this software and associated documentation files (the "Software"), to deal
1982
+ in the Software without restriction, including without limitation the rights
1983
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1984
+ copies of the Software, and to permit persons to whom the Software is
1985
+ furnished to do so, subject to the following conditions:
1986
+
1987
+ The above copyright notice and this permission notice shall be included in all
1988
+ copies or substantial portions of the Software.
1989
+
1990
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1991
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1992
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1993
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1994
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1995
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1996
+ SOFTWARE.
1997
+
1971
1998
  =========================================================================================================
1972
1999
  Files: codeql.json
1973
2000
  License: https://raw.githubusercontent.com/github/vscode-codeql/main/LICENSE.md
package/README.md CHANGED
@@ -47,6 +47,7 @@ import { grammars } from 'tm-grammars'
47
47
  | `clojure` | `clj` | [microsoft/vscode](https://github.com/microsoft/vscode/blob/a1a4c0a63b1ad59e84f54b874744fe35dea9abe1/extensions/clojure/syntaxes/clojure.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | | 6.36 kB |
48
48
  | `cmake` | | [twxs/vs.language.cmake](https://github.com/twxs/vs.language.cmake/blob/19b1b8fe2d68d72cf294d0c3c22f0a3fc54f8f6f/syntaxes/CMake.tmLanguage) | [MIT](https://raw.githubusercontent.com/twxs/vs.language.cmake/master/LICENSE) | | 10.00 kB |
49
49
  | `cobol` | | [spgennard/vscode_cobol](https://github.com/spgennard/vscode_cobol/blob/e23b4cda2772a4fbc985407167412edcd47f528a/syntaxes/COBOL.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/spgennard/vscode_cobol/main/LICENSE) | `sql` `html` `java` | 38.43 kB |
50
+ | `codeowners` | | [jasonnutter/vscode-codeowners](https://github.com/jasonnutter/vscode-codeowners/blob/219dee0ab25c1bfad0b9de84180117e71221a653/syntaxes/codeowners.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/jasonnutter/vscode-codeowners/master/LICENSE.txt) | | 471.00 B |
50
51
  | `codeql` | `ql` | [github/vscode-codeql](https://github.com/github/vscode-codeql/blob/47fa163cb9fffce379458962eb391c9ef9082dcb/syntaxes/ql.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/github/vscode-codeql/main/LICENSE.md) | | 32.73 kB |
51
52
  | `coffee` | `coffeescript` | [microsoft/vscode](https://github.com/microsoft/vscode/blob/ff58f5083f57b50e6a100ab60454dfb72fe21e80/extensions/coffeescript/syntaxes/coffeescript.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | `javascript` | 26.34 kB |
52
53
  | `common-lisp` | `lisp` | [qingpeng9802/vscode-common-lisp](https://github.com/qingpeng9802/vscode-common-lisp/blob/854e24985d84a809c24cee02afd2932a5bb319cd/syntaxes/commonlisp.tmLanguage.json) | [MIT](https://raw.githubusercontent.com/qingpeng9802/vscode-common-lisp/master/LICENSE) | | 23.43 kB |
@@ -0,0 +1,40 @@
1
+ {
2
+ "displayName": "CODEOWNERS",
3
+ "name": "codeowners",
4
+ "patterns": [
5
+ {
6
+ "include": "#comment"
7
+ },
8
+ {
9
+ "include": "#pattern"
10
+ },
11
+ {
12
+ "include": "#owner"
13
+ }
14
+ ],
15
+ "repository": {
16
+ "comment": {
17
+ "patterns": [
18
+ {
19
+ "begin": "^\\s*#",
20
+ "captures": {
21
+ "0": {
22
+ "name": "punctuation.definition.comment.codeowners"
23
+ }
24
+ },
25
+ "end": "$",
26
+ "name": "comment.line.codeowners"
27
+ }
28
+ ]
29
+ },
30
+ "owner": {
31
+ "match": "\\S*@\\S+",
32
+ "name": "storage.type.function.codeowners"
33
+ },
34
+ "pattern": {
35
+ "match": "^\\s*(\\S+)",
36
+ "name": "variable.other.codeowners"
37
+ }
38
+ },
39
+ "scopeName": "text.codeowners"
40
+ }
package/index.js CHANGED
@@ -439,6 +439,17 @@ export const grammars = [
439
439
  sha: 'e23b4cda2772a4fbc985407167412edcd47f528a',
440
440
  source: 'https://github.com/spgennard/vscode_cobol/blob/e23b4cda2772a4fbc985407167412edcd47f528a/syntaxes/COBOL.tmLanguage.json',
441
441
  },
442
+ {
443
+ byteSize: 471,
444
+ displayName: 'CODEOWNERS',
445
+ lastUpdate: '2018-12-19T21:50:43Z',
446
+ license: 'MIT',
447
+ licenseUrl: 'https://raw.githubusercontent.com/jasonnutter/vscode-codeowners/master/LICENSE.txt',
448
+ name: 'codeowners',
449
+ scopeName: 'text.codeowners',
450
+ sha: '219dee0ab25c1bfad0b9de84180117e71221a653',
451
+ source: 'https://github.com/jasonnutter/vscode-codeowners/blob/219dee0ab25c1bfad0b9de84180117e71221a653/syntaxes/codeowners.tmLanguage.json',
452
+ },
442
453
  {
443
454
  aliases: [
444
455
  'ql',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tm-grammars",
3
3
  "type": "module",
4
- "version": "1.10.0",
4
+ "version": "1.11.0",
5
5
  "description": "Collecton of TextMate grammars in JSON",
6
6
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
7
7
  "license": "MIT",