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

LSP-ruff

by LDAP ST3

LSP helper for ruff - an extremely fast Python linter, written in Rust.

Details

Installs

  • Total 3K
  • Win 853
  • Mac 975
  • Linux 935
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 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
Windows 0 3 1 4 4 8 1 1 2 4 4 2 8 1 3 2 3 9 3 1 0 1 0 1 2 8 0 3 7 1 5 5 3 0 0 1 2 0 3 4 8 2 0 2 1 5
Mac 0 4 2 3 8 5 4 1 3 3 2 5 1 1 3 2 4 6 2 1 2 1 6 4 2 2 1 2 4 6 1 4 5 2 1 9 7 2 1 4 1 3 0 2 2 3
Linux 0 3 3 4 4 2 0 2 0 7 3 5 2 2 0 2 4 4 2 4 1 3 2 2 4 4 4 2 5 4 3 2 2 7 2 1 4 3 4 3 5 5 3 1 7 2

Readme

Source
raw.​githubusercontent.​com

LSP-ruff

This is a helper package that automatically installs and updates ruff for you. Ruff is an extremely fast Python linter and code transformation tool, written in Rust.

Requirements

To use this package, you must have:

  • An executable python (on Windows) or python3 (on Linux/macOS)
  • The LSP package
  • For Ubuntu and Debian users, you must also install python3-venv with apt
  • It's recommended to also install the LSP-json package which will provide auto-completion and validation for this package's settings.

Configuration

There are multiple ways to configure the package and the language server.

  • Global configuration: Preferences > Package Settings > LSP > Servers > LSP-ruff
  • Project-specific configuration: From the Command Palette run Project: Edit Project and add your settings in:

    {
        "settings": {
            "LSP": {
                "LSP-ruff": {
                    "initializationOptions": {
                        "settings": {
                            // Put your settings here
                        }
                    }
                }
            }
        }
    }
    

Code Actions on Save

The following “code actions on save” are supported:

  • source.fixAll
  • source.organizeImports
  • source.fixAll.ruff
  • source.organizeImports.ruff

You can use those with the lsp_code_actions_on_save LSP Setting to automatically apply specific actions on saving the file.