-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.json
56 lines (56 loc) · 1.63 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.tabSize": 2,
"search.exclude": {
"**/.yarn": true,
"**/.pnp.*": true
},
"prettier.prettierPath": ".yarn/sdks/prettier/index.js",
"typescript.tsdk": ".yarn/sdks/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"jest.jestCommandLine": "yarn jest",
"terminal.integrated.env.osx": {
"TF_DATA_DIR": "${workspaceFolder}/.terraform",
"TF_CLI_CONFIG_FILE": "${workspaceFolder}/.terraformrc",
"TF_WORKSPACE": "test"
},
"terminal.integrated.env.linux": {
"TF_DATA_DIR": "${workspaceFolder}/.terraform",
"TF_CLI_CONFIG_FILE": "${workspaceFolder}/.terraformrc",
"TF_WORKSPACE": "test"
},
"terminal.integrated.env.windows": {
"TF_DATA_DIR": "${workspaceFolder}\\.terraform",
"TF_CLI_CONFIG_FILE": "${workspaceFolder}\\.terraformrc",
"TF_WORKSPACE": "test"
},
"files.associations": {
".terraformrc": "terraform"
},
"files.exclude": {
"**/.DS_Store": true,
"**/.editorconfig": true,
"**/.git": true,
"**/.pnp.*": true,
"**/.prettierignore": true,
"**/.yarn": true,
"**/infra/.terraform.lock.hcl": true,
"**/LICENSE": true,
"**/Thumbs.db": true,
"**/yarn.lock": true
},
"[terraform]": {
"editor.defaultFormatter": "hashicorp.terraform",
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file"
},
"[terraform-vars]": {
"editor.defaultFormatter": "hashicorp.terraform",
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file"
}
}