forked from hoovercj/vscode-ruby-linter
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.47 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.47 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
61
{
"name": "cornflakes-linter",
"displayName": "cornflakes-linter",
"description": "Wrapper for Python flake8 linter and associated plugins. It rectifies current issues with displaying ALL flake8 problems in the problems tab.",
"version": "0.5.1",
"publisher": "kevinglasson",
"icon": "images/cereals.png",
"categories": [
"Linters"
],
"keywords": [
"python",
"linter",
"flake8",
"lint",
"plugin"
],
"license": "SEE LICENSE IN LICENSE.txt",
"homepage": "https://github.com/kevinglasson/vscode-cornflakes-linter",
"repository": {
"type": "git",
"url": "https://github.com/kevinglasson/vscode-cornflakes-linter.git"
},
"engines": {
"vscode": "^1.0.0"
},
"activationEvents": [
"onLanguage:python"
],
"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": {
"cornflakes.linter.executablePath": {
"type": "string",
"default": "flake8",
"description": "Points to the flake8 exectuable."
},
"cornflakes.linter.run": {
"type": "string",
"enum": [
"onSave",
"onType",
"off"
],
"default": "onSave",
"description": "Whether the linter is run on save, on type or disabled."
}
}
}
}
}