-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkspace.code-workspace
87 lines (87 loc) · 2.34 KB
/
workspace.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
{
"extensions": {
"recommendations": [
"bungcip.better-toml",
"dbaeumer.vscode-eslint",
"dorzey.vscode-sqlfluff",
"esbenp.prettier-vscode",
"exiasr.hadolint",
"irongeek.vscode-env",
"ms-azuretools.vscode-docker",
"ms-python.python",
"rust-lang.rust-analyzer",
"sleistner.vscode-fileutils",
"tyriar.sort-lines",
"yzhang.markdown-all-in-one",
],
"unwantedRecommendations": [],
},
"folders": [
{
"name": "pg-signal",
"path": ".",
},
{
"name": "pg-signal/pg_signal",
"path": "packages/pg_signal",
},
],
"settings": {
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
},
"[python]": {
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit",
},
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.tabSize": 4,
},
"[rust]": {
"editor.tabSize": 4,
},
"[sql]": {
"editor.defaultFormatter": "dorzey.vscode-sqlfluff",
},
"[toml]": {
"editor.tabSize": 2,
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
},
"editor.autoClosingQuotes": "always",
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
},
"editor.formatOnSave": true,
"editor.quickSuggestions": {
"strings": true,
},
"eslint.experimental.useFlatConfig": true,
"eslint.validate": ["javascript", "javascriptreact", "json", "jsonc", "toml", "yaml"],
"files.associations": {
".env.*": "env",
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"python.testing.pytestEnabled": true,
"rust-analyzer.check.command": "clippy",
"rust-analyzer.checkOnSave": true,
"rust-analyzer.linkedProjects": ["./packages/pg_signal/Cargo.toml"],
"scss.validate": false,
"sqlfluff.executablePath": "${workspaceFolder}/.venv/bin/sqlfluff",
"sqlfluff.format.enabled": true,
"sqlfluff.linter.run": "onSave",
"terminal.integrated.env.osx": {
"MallocNanoZone": "1",
},
"testing.automaticallyOpenPeekView": "never",
},
}