forked from bradymholt/vscode-pgFormatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
169 lines (169 loc) · 4.25 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
{
"name": "pgformatter",
"displayName": "pgFormatter",
"description": "A PostgreSQL SQL formatter",
"author": {
"name": "Brady Holt"
},
"version": "1.14.0",
"publisher": "bradymholt",
"icon": "icon.png",
"galleryBanner": {
"theme": "dark",
"color": "#555555"
},
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Programming Languages",
"Formatters",
"Other"
],
"keywords": [
"pgsql",
"postgres",
"PostgreSQL",
"SQL",
"Formatting"
],
"license": "MIT",
"homepage": "https://github.com/bradymholt/vscode-pgFormatter",
"repository": {
"type": "git",
"url": "https://github.com/bradymholt/vscode-pgFormatter.git"
},
"bugs": {
"url": "https://github.com/bradymholt/vscode-pgFormatter/issues"
},
"activationEvents": [
"onLanguage:sql",
"onLanguage:pgsql",
"onLanguage:postgres"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "sql",
"aliases": [
"SQL",
"sql",
"pgsql"
],
"extensions": [
"sql",
"pgsql"
]
},
{
"id": "postgres",
"aliases": [
"PostgreSQL",
"Postgres"
],
"extensions": [
"sql",
"pgsql"
]
}
],
"configuration": {
"type": "object",
"title": "pgFormatter Configuration",
"properties": {
"pgFormatter.spaces": {
"type": "number",
"description": "Number of spaces to indent the code"
},
"pgFormatter.tabs": {
"type": "boolean",
"description": "Use tabs to indent code (spaces option is ignored)"
},
"pgFormatter.commaStart": {
"type": "boolean",
"default": false,
"description": "Use preceding comma in parameter list"
},
"pgFormatter.commaBreak": {
"type": "boolean",
"default": false,
"description": "In insert statement, add a newline after each comma"
},
"pgFormatter.commaEnd": {
"type": "boolean",
"default": true,
"description": "Use trailing comma in parameter list"
},
"pgFormatter.noComment": {
"type": "boolean",
"default": false,
"description": "Remove any comments"
},
"pgFormatter.functionCase": {
"type": "string",
"default": "unchanged",
"enum": [
"unchanged",
"lowercase",
"uppercase",
"capitalize"
],
"description": "Case of the function names"
},
"pgFormatter.noGrouping": {
"type": "boolean",
"default": false,
"description": "Add a newline between statements in transaction regroupement"
},
"pgFormatter.keywordCase": {
"type": "string",
"default": "uppercase",
"enum": [
"unchanged",
"lowercase",
"uppercase",
"capitalize"
],
"description": "Case of the reserved keywords"
},
"pgFormatter.formatType": {
"type": "boolean",
"default": false,
"description": "Use another formatting type for some statements"
},
"pgFormatter.wrapLimit": {
"type": "number",
"description": "Wrap queries at a certain length"
},
"pgFormatter.placeholder": {
"type": "string",
"default": null,
"description": "Regex to find code that must not be changed"
},
"pgFormatter.perlBinPath": {
"type": "string",
"default": "perl",
"description": "The path to the perl executable"
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"vscode:prepublish": "npm run compile",
"vscode:publish": "vsce publish"
},
"devDependencies": {
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.1",
"typescript": "^3.7.5",
"vscode": "^1.1.36"
},
"dependencies": {
"psqlformat": "^1.7.0"
}
}