Skip to content

kaste/SublimeLinter-contrib-ruff

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SublimeLinter-contrib-ruff

This linter plugin for SublimeLinter provides an interface to ruff. It will be used with files that have the “Python” syntax.

Installation

SublimeLinter must be installed in order to use this plugin.

Please use Package Control to install the linter plugin.

Before installing this plugin, you must ensure that ruff is installed on your system. Typically

pip install ruff
# or:
rye install ruff

will do that. You can also install it into a virtual environment and SublimeLinter will find it.

Quick Fixes

ruff provides fixes for some errors. These fixes are available in SublimeLinter as quick actions. See the Command Palette: SublimeLinter: Quick Action. (Also: https://github.com/SublimeLinter/SublimeLinter#quick-actionsfixers)

image

You may want to define a key binding:

    // To trigger a quick action
    { "keys": ["ctrl+k", "ctrl+f"],
      "command": "sublime_linter_quick_actions"
    },

Settings

Additional SublimeLinter-ruff settings:

Setting Description
no-cache Default: True. As this plugin by default runs on every python file, turn the cache off. ruff is already fast without a cache but turn this back on (false) on projects.
disable_if_not_dependency Default: False. If set to true, use only locally installed ruff executables from virtual environments or skip linting the project.
check_for_local_configuration Set to true to check for a local "ruff.toml" configuration file. Skip running ruff if such a file cannot be found.[1]

[1] Unfortunately "pyproject.toml" detection is not implemented as we don't have a toml parser at hand in Python 3.3 (yik, we run 3.3 here). (TODO?)