|
16 | 16 | "bugs": { |
17 | 17 | "url": "https://github.com/JohnstonCode/svn-scm/issues" |
18 | 18 | }, |
19 | | - "categories": [ |
20 | | - "Other", |
21 | | - "SCM Providers" |
22 | | - ], |
23 | | - "keywords": [ |
24 | | - "multi-root ready", |
25 | | - "scm", |
26 | | - "svn" |
27 | | - ], |
28 | | - "activationEvents": [ |
29 | | - "*" |
30 | | - ], |
| 19 | + "categories": ["Other", "SCM Providers"], |
| 20 | + "keywords": ["multi-root ready", "scm", "svn"], |
| 21 | + "activationEvents": ["*"], |
31 | 22 | "main": "./out/extension", |
32 | 23 | "scripts": { |
33 | 24 | "vscode:prepublish": "tsc -p ./", |
34 | 25 | "compile": "tsc -watch -p ./", |
35 | 26 | "postinstall": "node ./node_modules/vscode/bin/install", |
36 | | - "test": "node ./node_modules/vscode/bin/test" |
| 27 | + "test": "node ./node_modules/vscode/bin/test", |
| 28 | + "prettier": "prettier --list-different 'src/**/*.js'" |
37 | 29 | }, |
38 | 30 | "dependencies": { |
39 | 31 | "iconv-lite": "^0.4.19", |
40 | 32 | "jschardet": "^1.6.0" |
41 | 33 | }, |
42 | 34 | "devDependencies": { |
43 | | - "typescript": "^2.6.1", |
44 | | - "vscode": "^1.1.6", |
45 | | - "mocha": "^3.5.0", |
46 | | - "eslint": "^4.6.1", |
47 | 35 | "@types/mocha": "^2.2.42", |
48 | | - "@types/node": "^7.0.43" |
| 36 | + "@types/node": "^7.0.43", |
| 37 | + "eslint": "^4.6.1", |
| 38 | + "mocha": "^3.5.0", |
| 39 | + "prettier": "^1.9.0", |
| 40 | + "typescript": "^2.6.1", |
| 41 | + "vscode": "^1.1.6" |
49 | 42 | }, |
50 | 43 | "contributes": { |
51 | 44 | "commands": [ |
|
144 | 137 | "default": true |
145 | 138 | }, |
146 | 139 | "svn.path": { |
147 | | - "type": [ |
148 | | - "string", |
149 | | - "null" |
150 | | - ], |
| 140 | + "type": ["string", "null"], |
151 | 141 | "description": "Path to the svn executable", |
152 | 142 | "default": null, |
153 | 143 | "isExecutable": true |
154 | 144 | }, |
155 | 145 | "svn.diff.withHead": { |
156 | 146 | "type": "boolean", |
157 | | - "description": "Show diff changes using latest revision in the repository. Set false to use latest revision in local folder", |
| 147 | + "description": |
| 148 | + "Show diff changes using latest revision in the repository. Set false to use latest revision in local folder", |
158 | 149 | "default": true |
159 | 150 | }, |
160 | 151 | "svn.layout.trunk": { |
161 | | - "type": [ |
162 | | - "string", |
163 | | - "null" |
164 | | - ], |
165 | | - "description": "Relative path for 'trunk' in SVN URL, 'null' to disable. (Ex.: 'trunk', 'main')", |
| 152 | + "type": ["string", "null"], |
| 153 | + "description": |
| 154 | + "Relative path for 'trunk' in SVN URL, 'null' to disable. (Ex.: 'trunk', 'main')", |
166 | 155 | "default": "trunk" |
167 | 156 | }, |
168 | 157 | "svn.layout.branches": { |
169 | | - "type": [ |
170 | | - "string", |
171 | | - "null" |
172 | | - ], |
173 | | - "description": "Relative path for 'branches' in SVN URL, 'null' to disable. (Ex.: 'branches', 'versions')", |
| 158 | + "type": ["string", "null"], |
| 159 | + "description": |
| 160 | + "Relative path for 'branches' in SVN URL, 'null' to disable. (Ex.: 'branches', 'versions')", |
174 | 161 | "default": "branches" |
175 | 162 | }, |
176 | 163 | "svn.layout.tags": { |
177 | | - "type": [ |
178 | | - "string", |
179 | | - "null" |
180 | | - ], |
181 | | - "description": "Relative path for 'tags' in SVN URL, 'null' to disable. (Ex.: 'tags', 'stamps')", |
| 164 | + "type": ["string", "null"], |
| 165 | + "description": |
| 166 | + "Relative path for 'tags' in SVN URL, 'null' to disable. (Ex.: 'tags', 'stamps')", |
182 | 167 | "default": "tags" |
183 | 168 | }, |
184 | 169 | "svn.multipleFolders.enabled": { |
|
0 commit comments