aboutsummaryrefslogtreecommitdiffhomepage
path: root/.vscode/settings.json
blob: 31610ed6546882dc6f99567d61834b9c55e5fdee (plain)
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
{
  "[javascript]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[typescript]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[json]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[md]": {
    "editor.wordBasedSuggestions": "off"
  },
  "files.associations": {
    "Dockerfile.*": "dockerfile",
    ".releaserc": "json"
  },
  "omnisharp.autoStart": false,
  "jest.runMode": "on-demand",
  "jest.jestCommandLine": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
  "jest.nodeEnv": {
    "NODE_ENV": "test",
    "LOG_LEVEL": "trace",
    "GIT_ALLOW_PROTOCOL": "file"
  },
  "npm.packageManager": "pnpm",
  "editor.formatOnSave": true,
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": "explicit"
  },
  "yaml.customTags": [
    "tag:yaml.org,2002:python/name:materialx.emoji.twemoji",
    "tag:yaml.org,2002:python/name:materialx.emoji.to_svg"
  ]
}