summaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: b6b8557b0d36c0e802f32bf299caf193c2ac2424 (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
36
37
38
39
40
41
{
    "python.formatting.autopep8Args": [
        "--ignore",
        "E402"
    ],
    "search.useIgnoreFiles": false,
    "search.exclude": {
        "**/.git": true,
        "**/.github": true,
        "build/**": true,
        "expected/**": true,
        "tools/**": true,
        "tools/aspatch/**": false,
        "tools/gfxsotn/**": false,
    },
    "defines": [
        "_LANGUAGE_C", // For gbi.h
    ],
    "files.associations": {
        "hud.h": "c",
        "global.h": "c",
        "ultratypes.h": "c",
        "mbi.h": "c",
        "common.h": "c",
        "sf64math.h": "c",
        "ultra64.h": "c",
        "os_internal.h": "c",
        "structs.h": "c",
        "stdint.h": "c",
        "xstdio.h": "c",
        "controller.h": "c",
        "os_version.h": "c",
        "stdbool.h": "c",
        "variables.h": "c",
        "functions.h": "c",
        "macros.h": "c",
        "random": "c",
        "limits": "c",
        "algorithm": "c"
    },
}