-
Notifications
You must be signed in to change notification settings - Fork 196
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.2 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.2 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "dataform",
"categories": [
"Programming Languages"
],
"description": "Syntax highlighting, compilation, and intellisense for Dataform and SQLX projects.",
"displayName": "Dataform",
"publisher": "dataform",
"version": "0.0.16",
"icon": "dataform_logo.png",
"repository": {
"url": "https://github.com/dataform-co/dataform/tree/master/vscode"
},
"engines": {
"vscode": "^1.48.0"
},
"activationEvents": [
"workspaceContains:**/*.sqlx"
],
"main": "extension.js",
"dependencies": {
"vscode-languageclient": "^6.1.3",
"vscode-languageserver": "^6.1.1",
"vscode-languageserver-textdocument": "^1.0.1"
},
"contributes": {
"configuration": [
{
"title": "Dataform",
"properties": {
"dataform.compileOnSave": {
"type": "boolean",
"default": true,
"markdownDescription": "Whether to re-compile project each time an `.sqlx` file is saved. Will always re-compile on initialize and on config change."
},
"dataform.compilerOptions": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"markdownDescription": "An array of additional arguments the extension should pass to the Dataform cli while executing `dataform compile --json`."
},
"dataform.recommendYamlExtension": {
"type": "boolean",
"default": true,
"markdownDescription": "Whether to recommend the YAML extension for validating `workflow_settings.yaml`."
}
}
}
],
"commands": [
{
"command": "dataform.compile",
"title": "Compile project",
"category": "Dataform"
}
],
"languages": [
{
"id": "sqlx",
"extensions": [
".sqlx"
],
"configuration": "language-configuration.json"
}
],
"grammars": [
{
"language": "sqlx",
"scopeName": "source.sqlx",
"path": "sqlx.grammar.json"
}
],
"yamlValidation": [
{
"fileMatch": "workflow_settings.yaml",
"url": "./workflow_settings_yaml.schema.json"
}
]
}
}