-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathreal-estate.code-workspace
94 lines (94 loc) · 2.57 KB
/
real-estate.code-workspace
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
{
"folders": [
{
"path": "."
},
{
"name": "WEBSITE",
"path": "src"
},
{
"name": "SCHEMAS",
"path": "schemas"
},
{
"name": "API/GET_SCHEMA",
"path": "src/pages/api/schema/get/"
},
{
"name": "API/REPLAY",
"path": "src/pages/api/replay"
},
{
"name": "API/MOCK",
"path": "src/pages/api/schema/mock/"
},
{
"name": "API/VALIDATE",
"path": "src/pages/api/schema/validate/"
},
{
"name": "GENERATOR",
"path": "generator/"
}
],
"settings": {
"eslint.alwaysShowStatus": true,
"importCost.bundleSizeDecoration": "minified",
"importCost.javascriptExtensions": [".js", ".jsx", ".ts", ".tsx"],
"gitProjectManager.displayProjectPath": true,
"gitProjectManager.ignoredFolders": [
"**/__generated__",
"**/node_modules/",
"**/__transpiled"
],
"markdown.allAvailableLanguages": false,
"markdown.docsetLanguages": ["HTML", "HTTP", "JavaScript", "Bash"],
"markdown.enableMetadataDateReminder": false,
"markdown-preview-enhanced.enableTypographer": true,
"workbench.editor.autoLockGroups": {
"vscode.markdown.preview.editor": true
},
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.minimumContrastRatio": 7,
"terminal.integrated.confirmOnExit": "hasChildProcesses",
"terminal.integrated.defaultLocation": "editor",
"yaml.schemaStore.enable": true,
"json-yaml-schema-selector.additionalSchemas": [
{
"name": "asyncapi:schema",
"url": "http://asyncapi.com/definitions/2.5.0/schema.json",
"fileMatch": ["asyncapi.{json,yaml,yml}"]
}
],
"files.insertFinalNewline": true,
"files.simpleDialog.enable": true,
"npm.enableRunFromFolder": true,
"npm-intellisense.importLinebreak": "",
"npm-intellisense.packageSubfoldersIntellisense": true,
"oneDarkPro.bold": false,
"search.showLineNumbers": true,
"yaml.schemas": {
"https://json.schemastore.org/eslintrc": "file:///Users/dave/git/yodata/real-estate/.eslintrc.yaml"
},
"zenMode.hideLineNumbers": false,
"search.useParentIgnoreFiles": true,
"eslint.workingDirectories": [
"src/components/**",
"src/pages/**/*",
"generator/**",
"schemas/**"
],
"path-intellisense.extensionOnImport": true,
"search.exclude": {
"**/_transpiled": true,
"/www/*": true
}
},
"extensions": {
"recommendations": [
"mark-tucker.aws-cli-configure",
"amazonwebservices.aws-toolkit-vscode"
]
}
}