ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

LSP-pyproject

by sublimelsp ST4

pyproject.toml support for Sublime's LSP plugin provided through pyproject server

Labels lsp, toml

Details

Installs

  • Total 199
  • Win 75
  • Mac 65
  • Linux 59
Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12 Jun 11 Jun 10 Jun 9 Jun 8 Jun 7 Jun 6 Jun 5 Jun 4 Jun 3 Jun 2 Jun 1 May 31 May 30 May 29 May 28 May 27 May 26 May 25 May 24 May 23 May 22 May 21 May 20 May 19 May 18 May 17 May 16 May 15 May 14 May 13
Windows 0 0 0 1 0 0 0 0 0 0 1 4 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 2 0 1 1 0 2 0 1 0 0 0
Mac 0 1 0 1 0 1 0 1 0 1 1 0 0 1 1 1 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2
Linux 0 0 0 0 0 1 0 1 2 0 0 0 0 0 1 0 0 0 0 1 0 0 0 2 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 2 0 1 0 1 1 0

Readme

Source
raw.​githubusercontent.​com

LSP-pyproject

This is a helper package that starts the pyproject language server for you.

Installation

  1. Install LSP via Package Control.
  2. Install LSP-pyproject via Package Control.

Applicable files

This language server operates on views with the source.toml base scope but only those with a pyproject.toml file name.

Configuration

You can edit the global settings by opening the Preferences: LSP-pyproject Settings from the Command Palette.

Configure server-specific rules in your pyproject.toml under the [tool.pyproject] section.

Each rule can be set to a severity level (error, warning, hint, information (or info), or off) using either a simple string or a table with a level field:

Error: language “toml” is not supported
[tool.pyproject.rules]
project-unknown-keys = "warning"
project-dependency-updates = { level = "hint" }
project-requires-python-upper-bound = "off"

Rule identifiers are shown in diagnostic output (e.g., error[project-unknown-keys]). Rules that aren't explicitly configured use their default severity level.