Skip to content

Commit

Permalink
Settings and schema
Browse files Browse the repository at this point in the history
  • Loading branch information
hbulens committed Oct 26, 2022
1 parent 7caaf61 commit 6f3b41f
Show file tree
Hide file tree
Showing 5 changed files with 4,143 additions and 1 deletion.
53 changes: 53 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"files.associations": {
"*.schema.json": "jsonc"
},
"editor.insertSpaces": true,
"[json]": {
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.tabSize": 2,
"files.trimTrailingWhitespace": true,
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace"
},
"[jsonc]": {
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.tabSize": 2,
"files.trimTrailingWhitespace": true,
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace"
},
"json.schemas": [
{
"fileMatch": [
"/apiDefinition*.swagger.json"
],
"url": "./schemas/apiDefinition.swagger.schema.json"
},
{
"fileMatch": [
"/*.swagger.json"
],
"url": "http://json.schemastore.org/swagger-2.0"
},
{
"fileMatch": [
"/certified-connectors/**/settings.json",
"/custom-connectors/**/settings.json"
],
"url": "./schemas/paconn-settings.schema.json"
},
{
"fileMatch": [
"/apiProperties.json",
],
"url": "./schemas/paconn-apiProperties.schema.json"
}
]
}
Loading

0 comments on commit 6f3b41f

Please sign in to comment.