-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
246 lines (246 loc) · 7.59 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
{
"name": "ruff",
"displayName": "Ruff",
"description": "A Visual Studio Code extension with support for the Ruff linter.",
"version": "2023.35.0-dev",
"serverInfo": {
"name": "Ruff",
"module": "ruff"
},
"publisher": "charliermarsh",
"license": "MIT",
"homepage": "https://github.com/astral-sh/ruff-vscode",
"repository": {
"type": "git",
"url": "https://github.com/astral-sh/ruff-vscode.git"
},
"bugs": {
"url": "https://github.com/astral-sh/ruff-vscode/issues"
},
"icon": "icon.png",
"galleryBanner": {
"color": "#1e415e",
"theme": "dark"
},
"keywords": [
"python",
"linting",
"ruff"
],
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Programming Languages",
"Linters"
],
"extensionDependencies": [
"ms-python.python"
],
"capabilities": {
"virtualWorkspaces": {
"supported": false,
"description": "Virtual Workspaces are not supported by the Ruff extension."
}
},
"activationEvents": [
"onLanguage:python",
"workspaceContains:*.py",
"onCommand:ruff.restart"
],
"main": "./dist/extension.js",
"scripts": {
"fmt": "prettier -w .",
"lint": "eslint src --ext ts",
"tsc": "tsc --noEmit",
"package": "webpack --mode production --devtool source-map --config ./webpack.config.js",
"watch": "webpack --watch",
"vsce-package": "vsce package -o ruff.vsix",
"vscode:prepublish": "npm run package"
},
"contributes": {
"configuration": {
"properties": {
"ruff.args": {
"default": [],
"markdownDescription": "Additional command-line arguments to pass to `ruff`, e.g., `\"args\": [\"--config=/path/to/pyproject.toml\"]`. Supports a subset of Ruff's command-line arguments, ignoring those that are required to operate the LSP, like `--force-exclude` and `--verbose`.",
"items": {
"type": "string"
},
"scope": "resource",
"type": "array"
},
"ruff.path": {
"default": [],
"markdownDescription": "Path to a custom `ruff` executable, e.g., `[\"/path/to/ruff\"]`.",
"scope": "resource",
"items": {
"type": "string"
},
"type": "array"
},
"ruff.importStrategy": {
"default": "fromEnvironment",
"markdownDescription": "Strategy for loading the `ruff` executable. `fromEnvironment` picks up Ruff from the environment, falling back to the bundled version if needed. `useBundled` uses the version bundled with the extension.",
"enum": [
"fromEnvironment",
"useBundled"
],
"enumDescriptions": [
"Use `ruff` from environment, falling back to the bundled version if `ruff` is not found.",
"Always use the bundled version of `ruff`."
],
"scope": "window",
"type": "string"
},
"ruff.run": {
"default": "onType",
"markdownDescription": "Run Ruff on every keystroke (`onType`) or on save (`onSave`).",
"enum": [
"onType",
"onSave"
],
"enumDescriptions": [
"Run Ruff on every keystroke.",
"Run Ruff on save."
],
"scope": "window",
"type": "string"
},
"ruff.interpreter": {
"default": [],
"markdownDescription": "Path to a Python interpreter to use to run the linter server.",
"scope": "window",
"items": {
"type": "string"
},
"type": "array"
},
"ruff.enable": {
"default": true,
"markdownDescription": "Whether to enable the Ruff extension.",
"scope": "window",
"type": "boolean"
},
"ruff.organizeImports": {
"default": true,
"markdownDescription": "Whether to register Ruff as capable of handling `source.organizeImports` actions.",
"scope": "window",
"type": "boolean"
},
"ruff.fixAll": {
"default": true,
"markdownDescription": "Whether to register Ruff as capable of handling `source.fixAll` actions.",
"scope": "window",
"type": "boolean"
},
"ruff.codeAction.fixViolation": {
"scope": "resource",
"type": "object",
"default": {
"enable": true
},
"properties": {
"enable": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable the Quick Fix."
}
},
"additionalProperties": false,
"markdownDescription": "Whether to display Quick Fix actions to autofix violations."
},
"ruff.codeAction.disableRuleComment": {
"scope": "resource",
"type": "object",
"default": {
"enable": true
},
"properties": {
"enable": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable the Quick Fix."
}
},
"additionalProperties": false,
"markdownDescription": "Whether to display Quick Fix actions to disable rules via `noqa` suppression comments."
},
"ruff.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"markdownDescription": "Traces the communication between VSCode and the ruff-lsp."
},
"ruff.showNotifications": {
"default": "off",
"markdownDescription": "Controls when notifications are shown by this extension.",
"enum": [
"off",
"onError",
"onWarning",
"always"
],
"enumDescriptions": [
"All notifications are turned off, any errors or warning are still available in the logs.",
"Notifications are shown only in the case of an error.",
"Notifications are shown for errors and warnings.",
"Notifications are show for anything that the server chooses to show."
],
"scope": "machine",
"type": "string"
},
"ruff.enableExperimentalFormatter": {
"default": false,
"markdownDescription": "Controls whether Ruff registers as capable of code formatting. The Ruff formatter is in an alpha state during which formatting may change at any time.",
"scope": "machine",
"type": "boolean"
}
}
},
"commands": [
{
"title": "Fix all auto-fixable problems",
"category": "Ruff",
"command": "ruff.executeAutofix"
},
{
"title": "Format imports",
"category": "Ruff",
"command": "ruff.executeOrganizeImports"
},
{
"title": "Restart Server",
"category": "Ruff",
"command": "ruff.restart"
}
]
},
"dependencies": {
"fs-extra": "^11.1.1",
"ovsx": "^0.7.1",
"vscode-languageclient": "^8.1.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.1.0",
"@types/node": "^20.3.1",
"@types/vscode": "1.75.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"@vscode/vsce": "^2.19.0",
"eslint": "^8.30.0",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^10.2.2",
"prettier": "^2.8.8",
"ts-loader": "^9.4.2",
"typescript": "^5.1.3",
"vsce": "^2.15.0",
"webpack": "^5.82.0",
"webpack-cli": "^5.0.2"
}
}