view .vscode/settings.json @ 2405:69ca2b2fc133

overcomplicated attempt at persisting the pane layout in the rdf graph this was hard because we have to somehow wait for the graph to load before config'ing the panes
author drewp@bigasterisk.com
date Fri, 17 May 2024 16:58:26 -0700
parents 8ebf79d6b957
children 6c61735514e9
line wrap: on
line source

{
  "djlint.pythonPath": "./bin/python",
  "python.analysis.autoFormatStrings": true,
  "python.analysis.diagnosticMode": "workspace",
  "python.analysis.enablePytestSupport": true,
  "python.analysis.extraPaths": [
    "__pypackages__/3.10/lib",
    "/my/proj/rdfdb"
  ],
  "python.autoComplete.extraPaths": ["__pypackages__/3.10/lib"],
  "python.defaultInterpreterPath": "./bin/python",
  "python.formatting.provider": "yapf",
  "python.testing.pytestEnabled": true,
  "python.testing.pytestPath": "./bin/pytest",
  "pythonTestExplorer.testFramework": "pytest",
  "toTypeScript.fixUnreachableCode": false,
  "toTypeScript.fixUnusedLabel": false,
  "toTypeScript.forgottenThisPropertyAccess": false,
  "launch": {
    
    "configurations": [
      {
        "name": "Python: File",
        "type": "python",
        "request": "launch",
        "program": "${file}",
        "justMyCode": true,
        "python": "./bin/python"
      }
    ],
    "compounds": []
  },
  "vitest.commandLine": "pnpm exec vitest",
  "vitest.enable": true
}