Skip to content

Commit

Permalink
replace anaconda
Browse files Browse the repository at this point in the history
  • Loading branch information
anlutro committed Jul 1, 2024
1 parent 9aac2d7 commit 97f298a
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
26 changes: 26 additions & 0 deletions configs/sublime-text/LSP-pylsp.sublime-settings
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// Settings in here override those in "LSP-pylsp/LSP-pylsp.sublime-settings"

{
"settings": {
// --- Linters --------------------------------------------------------
// Configuration is computed first from user configuration (in home directory),
// overridden by configuration passed in by the language client,
// and then overridden by configuration discovered in the workspace.
//
// The default configuration source is pycodestyle, because the default
// linter is pycodestyle. If instead you want to use flake8, you must
// change "pylsp.configurationSources" to ["flake8"], and you must
// enable the flake8 plugin (see below), and you must disable the
// pycodestyle plugin (see below).
// By default, pycodestyle is enabled
"pylsp.configurationSources": ["pycodestyle"],
"pylsp.plugins.flake8.enabled": true,
"pylsp.plugins.pycodestyle.enabled": false,
"pylsp.plugins.pydocstyle.enabled": false,
"pylsp.plugins.pyflakes.enabled": true,
"pylsp.plugins.pylint.enabled": true,
"pylsp.plugins.pylsp_mypy.enabled": false,
// When enabling, it's recommended to disable `flake8`, `pycodestyle`, `pyflakes`, `mccabe` and `pyls_isort` plugins.
"pylsp.plugins.ruff.enabled": false,
}
}
3 changes: 2 additions & 1 deletion configs/sublime-text/Package Control.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
],
"installed_packages":
[
"Anaconda",
"Dockerfile Syntax Highlighting",
"Earthly Earthfile",
"Elixir",
"InsertDate",
"Jinja2",
"LSP",
"LSP-pylsp",
"Package Control",
"Rust Enhanced",
"Terraform",
Expand Down

0 comments on commit 97f298a

Please sign in to comment.