Skip to content

Commit

Permalink
chore: bump python-lsp-server[all] from 1.11.0 to 1.12.0 (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Nov 28, 2024
1 parent 696f1bb commit 2973805
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
4 changes: 4 additions & 0 deletions LSP-pylsp.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
// --- JEDI configuration ---------------------------------------------
// Additional paths to extend the JEDI engine with.
"pylsp.plugins.jedi.extra_paths": ["$sublime_py_files_dir", "$packages"],
// Whether to place extra_paths at the beginning (true) or end (false) of `sys.path`
"pylsp.plugins.jedi.prioritize_extra_paths": false,
// Define environment for jedi.Script and Jedi.names.
// If you are using a virtual environment, specify a path to it to here. For example: "./.venv/myproject",
"pylsp.plugins.jedi.environment": null,
Expand Down Expand Up @@ -116,6 +118,8 @@
"pylsp.plugins.flake8.exclude": null,
// List of errors and warnings to append to ignore list.
"pylsp.plugins.flake8.extendIgnore": [],
// List of errors and warnings to append to select list.
"pylsp.plugins.flake8.extendSelect": [],
// Path to the flake8 executable.
"pylsp.plugins.flake8.executable": "flake8",
// When parsing directories, only check filenames matching these patterns.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ pyls-isort==0.2.2
pylsp-mypy==0.6.9
python-lsp-black==2.0.0
python-lsp-ruff==2.2.2
python-lsp-server[all]==1.11.0
python-lsp-server[all]==1.12.0
13 changes: 13 additions & 0 deletions sublime-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,14 @@
"uniqueItems": true,
"description": "List of errors and warnings to append to ignore list."
},
"pylsp.plugins.flake8.extendSelect": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "List of errors and warnings to append to select list."
},
"pylsp.plugins.flake8.filename": {
"type": [
"array",
Expand Down Expand Up @@ -163,6 +171,11 @@
"type": "string"
}
},
"pylsp.plugins.jedi.prioritize_extra_paths": {
"type": "boolean",
"default": false,
"description": "Whether to place extra_paths at the beginning (true) or end (false) of `sys.path`"
},
"pylsp.plugins.jedi.env_vars": {
"type": [
"object",
Expand Down

0 comments on commit 2973805

Please sign in to comment.