-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathneoconf.json
More file actions
54 lines (54 loc) · 1.25 KB
/
neoconf.json
File metadata and controls
54 lines (54 loc) · 1.25 KB
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
{
"lspconfig": {
"basedpyright": {
"basedpyright.typeCheckingMode": "standard",
"basedpyright.disableOrganizeImports": true,
"basedpyright.analysis.diagnosticMode": "workspace",
"basedpyright.analysis.diagnosticSeverityOverrides": {
"reportUnusedImport": false
},
"python.pythonPath": "./.venv/bin/python",
"python.analysis.ignore": [
"*"
]
},
"jsonls": {
"json.validate.enable": true,
"json.schemas": [
{
"fileMatch": [
"*.hujson"
],
"schema": {
"allowTrailingCommas": true
}
}
]
},
"lua_ls": {
// see https://luals.github.io/wiki/settings/
"Lua.completion.autoRequire": false,
"Lua.diagnostics.disable": [
"missing-fields"
],
"Lua.hint.arrayIndex": "Disable",
"Lua.hint.enable": true,
"Lua.hint.setType": true,
"Lua.runtime.version": "LuaJIT"
},
"ruff": {
"ruff.lint.select": [
"ALL"
],
"ruff.lint.ignore": [
"D1" // missing docstrings
]
},
"yamlls": {
"yaml.completion": true,
"yaml.validate": true,
"yaml.format.enable": true,
"yaml.hover": true
}
}
}