aboutsummaryrefslogtreecommitdiff
path: root/configs/nvim/lua/crupest/constants.lua
blob: c8238e7bc09e884f19c4bec50be0d208d0ffe6a4 (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
local config_patterns = {
    cspell = {
        ".cspell.json",
        "cspell.json",
        ".cSpell.json",
        "cSpell.json",
        "cspell.config.js",
        "cspell.config.cjs",
        "cspell.config.json",
        "cspell.config.yaml",
        "cspell.config.yml",
        "cspell.yaml",
        "cspell.yml",
    },
    nodejs = {
        "package.json"
    },
    deno = {
        "deno.json", "deno.jsonc"
    }
}

local filetypes = {
    js_ts = { 'javascript', 'javascriptreact', 'typescript', 'typescriptreact' }

}

return {
    config_patterns = config_patterns,
    filetypes = filetypes,
}