-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
58 lines (51 loc) · 1.72 KB
/
extension.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
{
"identifier": "pro.albright.luacheck",
"name": "Luacheck",
"organization": "Garrett Albright",
"description": "Integrates the Luacheck linter for Lua into Nova.",
"version": "0.3.1",
"categories": ["issues"],
"main": "main.js",
"activationEvents": [
"onLanguage:lua"
],
"entitlements": {
"process": true
},
"license": "BSD 2-clause",
"bugs": "https://github.com/GarrettAlbright/Luacheck.novaextension/issues",
"homepage": "https://github.com/GarrettAlbright/Luacheck.novaextension",
"repository": "https://github.com/GarrettAlbright/Luacheck.novaextension",
"config-workspace": [
{
"key": "pro.albright.luacheck.general.workspace.section",
"title": "General",
"type": "section",
"children": [
{
"key": "pro.albright.luacheck.run-from-file-folder",
"title": "Run Luacheck from the source file's folder",
"description": "By default Luacheck is run from the project folder.",
"type": "boolean",
"default": false
}
]
}
],
"config": [
{
"key": "pro.albright.luacheck.general.section",
"title": "General",
"type": "section",
"children": [
{
"key": "pro.albright.luacheck.disable-debug-log",
"title": "Disable debug log",
"description": "Disable logging of any debugging info to the extension console.",
"type": "boolean",
"default": false
}
]
}
]
}