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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
-- https://www.schemastore.org/json/
local M = {}
M.setup = function()
local schemas = {
{
description = "Package JSON file",
fileMatch = { "package.json" },
url = "https://json.schemastore.org/package.json",
},
{
description = "TypeScript compiler configuration file",
fileMatch = { "tsconfig.json", "tsconfig.*.json" },
url = "http://json.schemastore.org/tsconfig",
},
{
description = "Lerna config",
fileMatch = { "lerna.json" },
url = "http://json.schemastore.org/lerna",
},
{
description = "Babel configuration",
fileMatch = { ".babelrc.json", ".babelrc", "babel.config.json" },
url = "http://json.schemastore.org/lerna",
},
{
description = "ESLint config",
fileMatch = { ".eslintrc.json", ".eslintrc" },
url = "http://json.schemastore.org/eslintrc",
},
{
description = "Bucklescript config",
fileMatch = { "bsconfig.json" },
url = "https://bucklescript.github.io/bucklescript/docson/build-schema.json",
},
{
description = "Prettier config",
fileMatch = { ".prettierrc", ".prettierrc.json", "prettier.config.json" },
url = "http://json.schemastore.org/prettierrc",
},
{
description = "Vercel Now config",
fileMatch = { "now.json" },
url = "http://json.schemastore.org/now",
},
{
description = "Stylelint config",
fileMatch = { ".stylelintrc", ".stylelintrc.json", "stylelint.config.json" },
url = "http://json.schemastore.org/stylelintrc",
},
{
name = "Helm Chart.yaml",
description = "The Chart.lock file locks dependencies from Chart.yaml",
fileMatch = { "Chart.lock" },
url = "https://json.schemastore.org/chart-lock.json",
},
{
name = "CircleCI config.yml",
description = "Schema for CircleCI 2.0 config files",
fileMatch = { ".circleci/config.yml" },
url = "https://json.schemastore.org/circleciconfig.json",
},
{
name = "yamllint",
description = "yamllint uses a set of rules to check source files for problems",
fileMatch = { "**/.yamllint", "**/.yamllint.yaml", "**/.yamllint.yml" },
url = "https://json.schemastore.org/yamllint.json",
},
{
name = "Hadolint",
description = "A smarter Dockerfile linter that helps you build best practice Docker images.",
fileMatch = { ".hadolint.yaml", "hadolint.yaml", ".hadolint.yml", "hadolint.yml" },
url = "https://raw.githubusercontent.com/hadolint/hadolint/master/contrib/hadolint.json",
},
{
name = "kustomization.yaml",
description = "Kubernetes native configuration management",
fileMatch = { "kustomization.yaml", "kustomization.yml" },
url = "https://json.schemastore.org/kustomization.json",
},
}
local function extend(tab1, tab2)
for _, value in ipairs(tab2) do
table.insert(tab1, value)
end
return tab1
end
local extended_schemas = extend(
schemas,
require("nlspsettings.jsonls").get_default_schemas()
)
options.lang.json.lsp.setup.settings = {
json = {
schemas = extended_schemas,
},
}
end
return M
|