-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathextension.json
57 lines (51 loc) · 1.43 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
{
"identifier": "klaemo.standardjs",
"name": "JavaScript Standard Style",
"organization": "Clemens Stolle",
"description": "Lint your code with the JavaScript Standard Style linter.",
"homepage": "https://github.com/klaemo/nova-standardjs#readme",
"repository": "https://github.com/klaemo/nova-standardjs",
"bugs": "https://github.com/klaemo/nova-standardjs/issues",
"version": "1.1.1",
"categories": ["issues", "formatters", "commands"],
"main": "main.js",
"activationEvents": [
"onLanguage:javascript",
"onLanguage:jsx",
"onLanguage:markdown",
"onLanguage:html"
],
"entitlements": {
"process": true,
"filesystem": "readonly"
},
"config": [
{
"key": "klaemo.standardjs.config.autoFixOnSave",
"title": "Turns auto fix on save on or off",
"type": "boolean",
"default": false
}
],
"configWorkspace": [
{
"key": "klaemo.standardjs.config.autoFixOnSave",
"title": "Turns auto fix on save on or off",
"type": "enum",
"values": ["Inherit from global settings", "Disable", "Enable"],
"default": "Inherit from global settings"
}
],
"commands": {
"editor": [
{
"title": "Fix all auto-fixable issues",
"command": "klaemo.standardjs.command.executeAutofix",
"when": "editorHasFocus",
"filters": {
"syntaxes": ["javascript", "typescript", "jsx", "tsx"]
}
}
]
}
}