forked from navikt/fhir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
33 lines (33 loc) · 1.09 KB
/
settings.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
{
"files.exclude": {
".idea": true,
"**.jar": true,
"build": true,
"input-cache": true,
"package-cache": true,
"temp": true,
"template": true,
},
"json.schemas": [
{
// The schema provides IntelliSense when editing json files containing fhir resources (e.g. StructureDefinition).
"fileMatch": [
"igs/*/input/*/*.json",
"igs/*/src/test/resources/*/*.json",
],
"url": "https://www.hl7.org/fhir/fhir.schema.json"
},
{
// The schema provides IntelliSense when editing test specification files
"fileMatch": [
"igs/*/test/*test.json",
],
"url": "https://raw.githubusercontent.com/navikt/fhir-validator-junit-engine/main/test-specification.schema.json"
}
],
"yaml.schemas": {
"https://raw.githubusercontent.com/navikt/fhir-validator-junit-engine/main/test-specification.schema.json": "igs/*/test/*test.yaml",
},
"editor.tabSize": 2,
"files.eol": "\n"
}