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

  • 1.0.1
  • github.​com
  • github.​com
  • 6 months ago
  • 54 minutes ago
  • 6 months ago

Installs

  • Total 230
  • Win 87
  • Mac 69
  • Linux 74
Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 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
Windows 0 1 0 0 0 0 0 0 4 0 1 1 0 0 2 0 0 1 0 2 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
Mac 0 1 0 0 0 0 1 0 0 0 2 0 0 1 0 0 0 0 0 0 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
Linux 0 1 0 1 0 0 0 1 5 0 1 0 1 1 0 1 1 0 1 1 1 0 0 0 0 1 0 1 2 0 0 0 0 0 1 0 0 0 0 1 0 0 0 2 2

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.