-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
219 lines (219 loc) · 5.93 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
{
"name": "pgformatter",
"displayName": "pgFormatter",
"description": "A PostgreSQL SQL formatter",
"author": {
"name": "Brady Holt"
},
"version": "1.28.1",
"publisher": "bradymholt",
"icon": "icon.png",
"galleryBanner": {
"theme": "dark",
"color": "#555555"
},
"engines": {
"vscode": "^1.54.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.noGrouping": {
"type": "boolean",
"default": false,
"description": "Add a newline between statements in transaction regroupement"
},
"pgFormatter.noExtraLine": {
"type": "boolean",
"default": false,
"description": "Do not add an extra empty line at end of the file"
},
"pgFormatter.keepNewline": {
"type": "boolean",
"default": false,
"description": "Preserve empty lines"
},
"pgFormatter.functionCase": {
"type": "string",
"default": "unchanged",
"enum": [
"unchanged",
"lowercase",
"uppercase",
"capitalize"
],
"description": "Case to be used for function names"
},
"pgFormatter.keywordCase": {
"type": "string",
"default": "uppercase",
"enum": [
"unchanged",
"lowercase",
"uppercase",
"capitalize"
],
"description": "Case to be used for reserved keywords"
},
"pgFormatter.typeCase": {
"type": "string",
"default": ".lowercase",
"enum": [
"unchanged",
"lowercase",
"uppercase",
"capitalize"
],
"description": "Case to be used for data type names"
},
"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.wrapComment": {
"type": "boolean",
"description": "With pgFormatter.wrapLimit specified, apply reformatting to comments"
},
"pgFormatter.placeholder": {
"type": "string",
"default": null,
"description": "Regex to find code that must not be changed"
},
"pgFormatter.extraFunction": {
"type": "string",
"default": null,
"description": "Path to file containing a list of functions names to use the same formatting as PostgreSQL internal functions"
},
"pgFormatter.noSpaceFunction": {
"type": "boolean",
"default": true,
"description": "Remove the space character between a function call and the open parenthesis that follows"
},
"pgFormatter.pgFormatterPath": {
"type": "string",
"default": null,
"description": "Path to a custom pg_format version"
},
"pgFormatter.configFile": {
"type": "string",
"default": null,
"description": "Path to a pg_format config file"
},
"pgFormatter.perlBinPath": {
"type": "string",
"default": "perl",
"description": "The path to the perl executable"
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"vscode:prepublish": "npm run compile",
"vscode:publish": "vsce publish"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/vscode": "^1.54.0",
"@vscode/vsce": "^2.19.0",
"glob": "^7.1.6",
"mocha": "^10.2.0",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0"
},
"dependencies": {
"psqlformat": "1.21.0"
}
}