-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "ruby-linter",
"displayName": "ruby-linter",
"description": "An extension to use built in ruby linting in vscode",
"version": "1.0.0",
"publisher": "hoovercj",
"icon": "images/ruby.png",
"categories": [
"Linters"
],
"license": "SEE LICENSE IN LICENSE.txt",
"homepage": "https://github.com/hoovercj/vscode-ruby-linter",
"repository": {
"type": "git",
"url": "https://github.com/hoovercj/vscode-ruby-linter.git"
},
"engines": {
"vscode": "^1.0.0"
},
"activationEvents": [
"onLanguage:ruby"
],
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.8.10",
"vscode": "^0.11.12"
},
"contributes": {
"configuration": {
"properties": {
"ruby.linter.executablePath": {
"type": "string",
"default": "ruby",
"description": "Points to the ruby exectuable."
},
"ruby.linter.run": {
"type": "string",
"enum": ["onSave", "onType", "off"],
"default": "onType",
"description": "Whether the linter is run on save or on type or disabled."
}
}
}
}
}