-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
60 lines (60 loc) · 1.71 KB
/
extension.json
File metadata and controls
60 lines (60 loc) · 1.71 KB
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
{
"identifier": "zagaja.Rubocop",
"name": "RuboCop",
"organization": "Matt Zagaja",
"description": "Rubocop extension.",
"version": "1.5.2",
"categories": ["issues"],
"repository": "https://github.com/mzagaja/Rubocop.novaextension",
"bugs": "https://github.com/mzagaja/Rubocop.novaextension/issues",
"main": "main.js",
"activationEvents": ["onLanguage:ruby"],
"entitlements": {
"process": true,
"filesystem": "readonly"
},
"config": [
{
"key": "Rubocop.bundle-exec",
"title": "Prepend rubocop with bundle exec",
"description": "Use this to prepend rubocop with bundle exec.",
"type": "boolean",
"default": false
},
{
"key": "Rubocop.rvm-exec",
"title": "Prepend rubocop with rvm-exec",
"description": "Use this to prepend rubocop with rvm .ruby-version do",
"type": "boolean",
"default": false
},
{
"key": "Rubocop.asdf-exec",
"title": "Prepend rubocop with asdf-exec",
"description": "Use this to prepend rubocop with asdf-exec",
"type": "boolean",
"default": false
},
{
"key": "Rubocop.mise-exec",
"title": "Prepend rubocop with mise exec --",
"description": "Use this to prepend rubocop with mise exec --",
"type": "boolean",
"default": false
},
{
"key": "Rubocop.auto-correct",
"title": "Auto correct on save.",
"description": "Use this to run rubocop -a on save for your file",
"type": "boolean",
"default": false
},
{
"key": "Rubocop.use-language-server",
"title": "Use LSP Mode.",
"description": "Use rubocop LSP mode for instant feedback",
"type": "boolean",
"default": false
}
]
}