aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.vscode/settings.json
blob: 8667400cc308de36a69ddaf3052c9b6e9aa68743 (plain) (blame)
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
{
  "typescript.tsdk": "node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib",
  "typescript.enablePromptUseWorkspaceTsdk": true,
    "eslint.validate": [
    "javascript",
    "javascriptreact",
    "typescript",
    "typescriptreact"
  ],
  "eslint.packageManager": "pnpm",
  "debug.javascript.unmapMissingSources": true,
  "go.lintTool": "golangci-lint",
  "files.associations": {
    "libturbo.h": "c",
    "turbo.json": "jsonc"
  },
  "[cram]": {
    "editor.trimAutoWhitespace": false,
    "files.trimFinalNewlines": false,
    "files.insertFinalNewline": false,
    "files.trimTrailingWhitespace": false
  },
  "search.exclude": {
    "crates/turbopack-tests/tests/snapshot/**": true
  },
  "python.analysis.typeCheckingMode": "basic",
  "[python]": {
    "editor.defaultFormatter": "ms-python.black-formatter"
  },
  "python.formatting.provider": "none",
  "restructuredtext.preview.docutils.disabled": true,
  "iis.configDir": "",
  "restructuredtext.preview.name": "docutils",
  "Lua.diagnostics.globals": [
    "setGroupConf",
    "getGroupConf"
  ]
}