forked from sqlfluff/vscode-sqlfluff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
457 lines (457 loc) · 15.4 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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
{
"name": "vscode-sqlfluff",
"displayName": "sqlfluff",
"version": "3.1.1",
"description": "A linter and auto-formatter for SQLfluff, a popular linting tool for SQL and dbt.",
"publisher": "dorzey",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Other"
],
"homepage": "https://github.com/sqlfluff/vscode-sqlfluff",
"repository": {
"type": "git",
"url": "https://github.com/sqlfluff/vscode-sqlfluff"
},
"bugs": {
"url": "https://github.com/sqlfluff/vscode-sqlfluff/issues"
},
"license": "MIT",
"keywords": [
"sqlfluff",
"dbt",
"sql",
"sql-bigquery",
"jinja-sql",
"postgres",
"snowflake-sql"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/src/extension.js",
"contributes": {
"commands": [
{
"command": "sqlfluff.debug",
"title": "SQLFluff Debug Extension"
},
{
"command": "sqlfluff.fix",
"title": "SQLFluff Fix",
"enablement": "editorLangId in sqlfluff.formatLanguages"
},
{
"command": "sqlfluff.format.selection",
"title": "SQLFluff Format Selection",
"enablement": "editorLangId in sqlfluff.formatLanguages && editorHasSelection"
},
{
"command": "sqlfluff.lint",
"title": "SQLFluff Lint",
"enablement": "editorLangId in sqlfluff.formatLanguages"
},
{
"command": "sqlfluff.lintProject",
"title": "SQLFluff Lint Project"
},
{
"command": "sqlfluff.showOutputChannel",
"title": "SQLFluff Show Output Channel",
"enablement": "editorLangId in sqlfluff.formatLanguages"
}
],
"menus": {
"editor/context": [
{
"command": "sqlfluff.format.selection",
"group": "1_modification@10",
"when": "editorLangId in sqlfluff.contextLanguages && editorHasSelection"
}
]
},
"configuration": {
"properties": {
"sqlfluff.config": {
"type": "string",
"default": "",
"description": "Specify an additional configuration file that overrides the standard configuration files."
},
"sqlfluff.environmentVariables": {
"type": "array",
"default": [
{
"key": "EXAMPLE_KEY",
"value": "example_value"
}
],
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"key",
"value"
],
"properties": {
"key": {
"type": "string",
"markdownDescription": "The key for the environment variable."
},
"value": {
"type": "string",
"markdownDescription": "The value for the environment variable."
}
}
},
"markdownDescription": "DEPRECATED: Use sqlfluff.env.environmentVariables"
},
"sqlfluff.executablePath": {
"type": "string",
"default": "sqlfluff",
"description": "Points to the sqlfluff executable."
},
"sqlfluff.dialect": {
"type": "string",
"enum": [
"",
"ansi",
"athena",
"bigquery",
"clickhouse",
"databricks",
"db2",
"duckdb",
"exasol",
"greenplum",
"hive",
"materialize",
"mysql",
"oracle",
"postgres",
"redshift",
"snowflake",
"soql",
"sparksql",
"sqlite",
"teradata",
"tsql",
"vertica"
],
"default": "",
"description": "The dialect of SQL to lint."
},
"sqlfluff.excludeRules": {
"type": "array",
"default": [],
"description": "Exclude specific rules. The excludedRules from the global settings and workspace settings are combined."
},
"sqlfluff.ignoreLocalConfig": {
"type": "boolean",
"default": false,
"description": "Ignore config files in default search path locations. Can be used with config to only reference the custom config file."
},
"sqlfluff.ignoreParsing": {
"type": "boolean",
"default": false,
"description": "Determines if the sql linter should ignore parsing errors."
},
"sqlfluff.rules": {
"type": "array",
"default": [],
"description": "Narrow the search to only specific rules. The rules from the global settings and workspace settings are combined."
},
"sqlfluff.shell": {
"type": [
"boolean",
"string"
],
"default": false,
"markdownDescription": "Set the shell for the child process. This can be set to false (limited shell features), true (shell features such as the `dir` command), or the path to the shell executable."
},
"sqlfluff.suppressNotifications": {
"type": "boolean",
"default": false,
"description": "Hide notification messages. The output channel will still be populated."
},
"sqlfluff.workingDirectory": {
"type": "string",
"default": "",
"markdownDescription": "Set the working directory for the `sqlfluff lint` and `sqlfluff fix` commands. Use an absolute path (can use variables if necessary). This defaults to the root path of the workspace. This setting should only be changed if absolutely necessary."
},
"sqlfluff.codeActions.excludeRules.workspace": {
"type": "boolean",
"default": true,
"markdownDescription": "Determines if the `Exclude Rule <rule> from Workspace Settings` code action is enabled."
},
"sqlfluff.codeActions.excludeRules.global": {
"type": "boolean",
"default": true,
"markdownDescription": "Determines if the `Exclude Rule <rule> from Global Settings` code action is enabled."
},
"sqlfluff.codeActions.noqa": {
"type": [
"array",
"boolean"
],
"default": [
"AM03",
"AM04",
"AM06",
"CP03",
"CP04",
"CP05",
"CV03",
"CV10",
"ST01",
"ST02",
"ST04",
"ST05",
"ST06",
"ST07",
"ST08",
"LT04",
"LT06",
"LT10"
],
"markdownDescription": "Set the rules that will not show the `noqa` code actions. Set this to `false` to disable all `noqa` code actions."
},
"sqlfluff.env.environmentVariables": {
"type": "array",
"default": [
{
"key": "EXAMPLE_KEY",
"value": "example_value"
}
],
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"key",
"value"
],
"properties": {
"key": {
"type": "string",
"markdownDescription": "The key for the environment variable."
},
"value": {
"type": "string",
"markdownDescription": "The value for the environment variable."
}
}
},
"markdownDescription": "Set the environment variables for the linter and formatter."
},
"sqlfluff.env.customDotEnvFiles": {
"type": "array",
"default": [],
"description": "Load the .env file from the specified paths."
},
"sqlfluff.env.useDotEnvFile": {
"type": "boolean",
"default": false,
"description": "Load the .env file from the working directory."
},
"sqlfluff.format.arguments": {
"type": "array",
"default": [],
"markdownDescription": "This is useful for setting extra arguments for the `sqlfluff fix` command. Include `--force` if running sqlfluff < 3.0.0."
},
"sqlfluff.format.enabled": {
"type": "boolean",
"default": true,
"description": "Determines if the document formatter is enabled."
},
"sqlfluff.format.languages": {
"type": "array",
"default": [
"sql",
"sql-bigquery",
"jinja-sql",
"postgres",
"snowflake-sql"
],
"items": {
"type": [
"string",
"object"
],
"additionalProperties": false,
"required": [
"language",
"contextMenuFormatOptions",
"preserveLeadingWhitespace"
],
"properties": {
"language": {
"type": "string",
"markdownDescription": "The language to enable formatting for."
},
"contextMenuFormatOptions": {
"type": "boolean",
"default": true,
"markdownDescription": "Show a SQLFluff option in the context menu."
},
"preserveLeadingWhitespace": {
"type": "boolean",
"default": false,
"markdownDescription": "Only works with `Format on Selection`. Preserve whitespace based on the first line of the selection."
}
}
},
"description": "The languages formatting is enabled for."
},
"sqlfluff.experimental.format.executeInTerminal": {
"type": "boolean",
"default": false,
"markdownDescription": "Determines if the `sqlfluff fix` command overwrites the file contents instead of this extension. You should not change the file contents while formatting is occurring if this is enabled. May lead to problems if `editor.formatOnSave = true`. This allows formatting to work when the templater is set to dbt. This can help solve [Mojibake](https://en.wikipedia.org/wiki/Mojibake) issues."
},
"sqlfluff.linter.arguments": {
"type": "array",
"default": [],
"markdownDescription": "This is useful for setting extra arguments for the `sqlfluff lint` command."
},
"sqlfluff.linter.delay": {
"type": "number",
"default": 100,
"markdownDescription": "Set the delay (milliseconds) before running the linter when using `sqlfluff.linter.run = 'onType'`."
},
"sqlfluff.linter.diagnosticSeverity": {
"type": "string",
"enum": [
"error",
"warning",
"information",
"hint"
],
"default": "error",
"markdownDescription": "Set the default diagnostic severity of the linting results."
},
"sqlfluff.linter.diagnosticSeverityByRule": {
"type": "array",
"default": [],
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"rule",
"severity"
],
"properties": {
"rule": {
"type": "string",
"markdownDescription": "The specific rule for the diagnostic severity."
},
"severity": {
"type": "string",
"enum": [
"error",
"warning",
"information",
"hint"
],
"markdownDescription": "Set the diagnostic severity for the given rule."
}
}
},
"markdownDescription": "Set the diagnostic severity of individual linting results."
},
"sqlfluff.linter.lintEntireProject": {
"type": "boolean",
"default": false,
"markdownDescription": "Determines if the linter will lint the workspaces on startup and configuration changes. Does not work with `dbt-core-interface`."
},
"sqlfluff.linter.languages": {
"type": "array",
"default": [
"sql",
"sql-bigquery",
"jinja-sql",
"postgres",
"snowflake-sql"
],
"description": "The languages linting is enabled for."
},
"sqlfluff.linter.run": {
"type": "string",
"enum": [
"onType",
"onSave",
"off"
],
"default": "onType",
"description": "Determines if the linter runs on save, on type, or disabled.",
"markdownEnumDescriptions": [
"Run the linter when the document is typed in. Does not work when the templater is set to dbt.",
"Run the linter when the document is saved.",
"Do not run the linter."
]
},
"sqlfluff.dbtInterface.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable this if `dbt-core-interface` is installed. This disables all other options except for `sqlfluff.config`."
},
"sqlfluff.dbtInterface.host": {
"type": "string",
"default": "localhost",
"description": "The host for the dbt-interface server."
},
"sqlfluff.dbtInterface.port": {
"type": "number",
"default": 8581,
"description": "The port for the dbt-interface server."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
"compile": "rimraf out && tsc -p ./ && npm run postbuild",
"watch": "rimraf out && tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"download-api": "vscode-dts dev",
"postdownload-api": "vscode-dts main",
"lint": "eslint src --ext ts",
"fix": "eslint src --ext ts --fix",
"format": "prettier \"**/*.{js,ts,tsx}\" --write",
"format:check": "prettier \"**/*.{js,ts,tsx}\" --check",
"esbuild-base": "rimraf out && esbuild ./src/extension.ts --bundle --outfile=out/src/extension.js --external:vscode --format=cjs --keep-names --platform=node",
"esbuild": "npm run -S esbuild-base -- --sourcemap",
"esbuild-watch": "npm run -S esbuild-base -- --sourcemap --watch",
"postbuild": "copyfiles \"./test/suite/test_sql/**/*.sql\" \"./out\" && copyfiles \"./test/.sqlfluff\" \"./out\" && copyfiles copyfiles \"./test/.vscode/settings.json\" \"./out\"",
"deploy": "vsce publish",
"build-vsix": "vsce package"
},
"dependencies": {
"dotenv": "^16.4.5",
"node-abort-controller": "^2.0.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.2",
"@types/node-fetch": "^2.6.4",
"@types/vscode": "1.63.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vscode/dts": "^0.4.1",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^2.29.0",
"copyfiles": "^2.4.1",
"esbuild": "^0.23.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.3.0",
"glob": "^11.0.0",
"mocha": "^10.6.0",
"typescript": "^5.5.3"
}
}