This repository has been archived by the owner on Apr 2, 2024. It is now read-only.
forked from mepsoid/vscode-s-quirrel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.64 KB
/
package.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "vscode-s-quirrel",
"displayName": "(S)quirrel",
"description": "Squirrel and Quirrel language support",
"version": "0.0.4",
"publisher": "mepsoid",
"icon": "acorn.png",
"license": "MIT",
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"squirrel",
"quirrel",
"nut"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^10.17.19",
"@types/vscode": "^1.43.0",
"tslint": "^5.16.0",
"typescript": "^3.8.3"
},
"contributes": {
"configuration": {
"title": "(S)quirrel",
"properties": {
"squirrel.syntaxChecker.envVar": {
"type": "string",
"default": "SQ_SA_PATH",
"markdownDescription": "Identifier of environment variable that contains full path to syntax checking utility. If set, will be used as *first priority*."
},
"squirrel.syntaxChecker.fileName": {
"type": "string",
"default": "sq3_static_analyzer-dev",
"markdownDescription": "Syntax checking utility name that must be discoverable through system **PATH** variable or full path to executable. This filename will be used as *second priority* if **Env Var** is undefined or have empty value."
},
"squirrel.syntaxChecker.options": {
"type": "string",
"default": "-w242 -w246 --message-output-file: ${source}",
"markdownDescription": "Command line options passed to syntax checking utility. Supposes substitution of *${source}* value with path to the current source file."
}
}
},
"languages": [
{
"id": "squirrel",
"aliases": [
"squirrel",
"Squirrel",
"quirrel",
"Quirrel"
],
"extensions": [
"nut"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "squirrel",
"scopeName": "source.squirrel",
"path": "./syntaxes/squirrel.tmLanguage.json"
}
],
"snippets": [
{
"language": "squirrel",
"path": "./snippets/squirrel.json"
}
],
"keybindings": [
{
"key": "f12",
"command": "squirrel.editor.action.revealDefinition",
"when": "editorTextFocus && editorLangId == 'squirrel'"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/mepsoid/vscode-s-quirrel.git"
}
}