aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode/settings.json
blob: 61ab420809ad826ceb3f1102f15e34b17e065568 (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
{
  "python.testing.unittestArgs": [
    "-v",
    "-s",
    "./src",
    "-p",
    "test_*.py"
  ],
  "python.testing.pytestEnabled": false,
  "python.testing.unittestEnabled": true,
  "eslint.workingDirectories": [
    {
      "mode": "auto"
    }
  ],
  "java.compile.nullAnalysis.mode": "automatic",
  "deno.enablePaths": [
    "src/packages/locusts/mod.ts",
    "src/packages/locusts/mod.test.ts"
  ],
  "C_Cpp.default.compileCommands": "/home/user/src/github.com/locusts/builddir/compile_commands.json",
  "C_Cpp.default.configurationProvider": "mesonbuild.mesonbuild"
}