File: settings.json

package info (click to toggle)
python-anndata 0.12.7-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,616 kB
  • sloc: python: 21,685; makefile: 23
file content (27 lines) | stat: -rw-r--r-- 744 bytes parent folder | download | duplicates (2)
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
{
    "[python][toml][json][jsonc]": {
        "editor.formatOnSave": true,
        "editor.codeActionsOnSave": {
            "source.organizeImports": "explicit",
            "source.fixAll": "explicit",
        },
    },
    "[python]": {
        "editor.defaultFormatter": "charliermarsh.ruff",
    },
    "[toml]": {
        "editor.defaultFormatter": "tamasfe.even-better-toml",
    },
    "[json][jsonc]": {
        "editor.defaultFormatter": "biomejs.biome",
    },
    "python.analysis.typeCheckingMode": "basic",
    "python.testing.pytestEnabled": true,
    "python.testing.pytestArgs": [
        "--color=yes",
        "-vv",
        "--strict-warnings",
        //"-nauto",
    ],
    "python.terminal.activateEnvironment": true,
}