-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
neoconf.json
40 lines (40 loc) · 1.39 KB
/
neoconf.json
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
{
"lspconfig": {
"pylsp": {
// jedi, the least sucky lsp for python
"pylsp.plugins.jedi_completion.enabled": false,
"pylsp.plugins.jedi_completion.include_class_objects": true,
"pylsp.plugins.jedi_completion.include_function_objects": true,
"pylsp.plugins.jedi_completion.fuzzy": true,
"pylsp.plugins.jedi_completion.eager": true,
// ruff, one stop shop for your linting needs
// should use the standalone ruff ls though
"pylsp.plugins.ruff.enabled": false,
// explicitly disable all other linters
"pylsp.plugins.autopep8.enabled": false,
"pylsp.plugins.flake8.enabled": false,
"pylsp.plugins.mccabe.enabled": false,
"pylsp.plugins.pycodestyle.enabled": false,
"pylsp.plugins.pydocstyle.enabled": false,
"pylsp.plugins.pyflakes.enabled": false,
"pylsp.plugins.pyline.enabled": false,
"plugins.yapf.enabled": false
},
"yamlls": {
"yaml.customTags": [
"!reference sequence"
],
"yaml.schemas": {
"https://gitlab.com/gitlab-org/gitlab/-/raw/master/app/assets/javascripts/editor/schema/ci.json": ".gitlab/ci-config/*.yml"
}
},
"basedpyright": {
"basedpyright.typeCheckingMode": "standard",
"basedpyright.disableOrganizeImports": true,
"python.pythonPath": "./.venv/bin/python",
"python.analysis.ignore": [
"*"
]
}
}
}