forked from vscode-shellcheck/vscode-shellcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 3.39 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "shellcheck",
"displayName": "shellcheck",
"description": "An extension to use shellcheck in vscode",
"version": "0.6.0",
"publisher": "timonwong",
"categories": [
"Programming Languages",
"Linters"
],
"keywords": [
"shell",
"shellscript",
"bash",
"linter",
"lint"
],
"homepage": "https://github.com/timonwong/vscode-shellcheck",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/timonwong/vscode-shellcheck.git"
},
"engines": {
"vscode": "^1.25.0"
},
"activationEvents": [
"onLanguage:shellscript"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"title": "ShellCheck",
"type": "object",
"properties": {
"shellcheck.enable": {
"description": "Whether shellcheck is enabled or not.",
"type": "boolean",
"scope": "resource",
"default": true
},
"shellcheck.executablePath": {
"description": "Path to the shellcheck executable.",
"type": "string",
"scope": "resource",
"default": "shellcheck"
},
"shellcheck.run": {
"description": "Whether shellcheck is run on save or on type.",
"type": "string",
"enum": [
"onSave",
"onType"
],
"scope": "resource",
"default": "onType"
},
"shellcheck.exclude": {
"description": "Exclude types of warnings, for example [\"SC1090\"].",
"type": "array",
"scope": "resource",
"default": []
},
"shellcheck.customArgs": {
"description": "Custom arguments to shellcheck.",
"type": "array",
"items": {
"type": "string"
},
"scope": "resource",
"default": []
},
"shellcheck.ignorePatterns": {
"description": "Mathing files and directories are being ignored by shellcheck. Glob patterns are interpreted relative to the workspace's root folder.",
"type": "object",
"scope": "resource",
"default": {}
},
"shellcheck.useWorkspaceRootAsCwd": {
"description": "Whether to use the workspace root directory as the current working directory when launching ShellCheck.",
"type": "boolean",
"scope": "resource",
"default": false
},
"shellcheck.useWSL": {
"description": "Whether to use a shellcheck installation in the Windows Subsystem for Linux.",
"type": "boolean",
"scope": "resource",
"default": false
},
"shellcheck.disableVersionCheck": {
"description": "Whether to diable shellcheck binary version check, which prompt for updating when outdated version found.",
"type": [
"boolean",
"null"
],
"scope": "application",
"default": null
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"tslint": "tslint --project tsconfig.json"
},
"dependencies": {
"lodash": "^4.17.10",
"minimatch": "^3.0.4",
"semver": "^5.5.0"
},
"devDependencies": {
"@types/lodash": "^4.14.109",
"@types/minimatch": "^3.0.3",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.0",
"@types/semver": "^5.5.0",
"mocha": "^5.2.0",
"tslint": "^5.11.0",
"typescript": "^3.0.3",
"vscode": "^1.1.21"
},
"__metadata": {
"id": "f95d8fff-f70a-4ae5-bb06-5c47ddbc8fc6",
"publisherDisplayName": "Timon Wong",
"publisherId": "04757770-dd50-443e-aae4-e1c7cf9c24f5"
}
}