MaxMilton/git-ref

View on GitHub
.vscode/settings.json

Summary

Maintainability
Test Coverage
{
  "editor.codeActionsOnSave": {
    "source.fixAll": "explicit"
  },
  "editor.formatOnPaste": false,
  "editor.formatOnSave": true,
  "editor.formatOnType": false,
  "eslint.lintTask.options": "--ignore-path .gitignore",
  "git.branchProtection": ["master"],
  "js/ts.implicitProjectConfig.checkJs": true,
  "prettier.enable": false, // use biome instead
  "typescript.tsdk": "node_modules/typescript/lib",

  "[json][jsonc][markdown]": {
    "editor.defaultFormatter": "biomejs.biome"
  },
  "[javascript][typescript]": {
    "editor.codeActionsOnSave": {
      "source.sortImports": "explicit",
      "source.fixAll": "explicit"
    },
    "editor.defaultFormatter": "biomejs.biome"
  }
}