about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc/.cspell.json
blob: 388ccce2b0918b3c8f9429035526294184e6c906 (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
{
    "allowCompoundWords": true,
    "dictionaries": ["cpp", "rust-extra", "rustc_codegen_gcc"],
    "dictionaryDefinitions": [
        {
            "name": "rust-extra",
            "path": "tools/cspell_dicts/rust.txt",
            "addWords": true
        },
        {
            "name": "rustc_codegen_gcc",
            "path": "tools/cspell_dicts/rustc_codegen_gcc.txt",
            "addWords": true
        }
    ],
    "files": [
        "src/**/*.rs"
    ],
    "ignorePaths": [
        "src/intrinsic/archs.rs",
        "src/intrinsic/llvm.rs"
    ],
    "ignoreRegExpList": [
        "/(FIXME|NOTE|TODO)\\([^)]+\\)/",
        "__builtin_\\w*"
    ]
}