drcongo / ruffix

A Sublime Text plugin for fixing your Python view with Ruff

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ruffix

An extremely simple Sublime Text plugin to run ruff --fix on the current view.

I'll probably add deeper functionality in future like a sidebar context menu to fix an entire folder or project.

Installation

Just use Package Control - ctrl-shift-p, select Package Control: Install Package, search for ruffix.

Note, this plugin does not install or maintain Ruff for you, you need to do that yourself and ensure that ruff is on your $PATH. If you're able to run ruff --fix some_file.py on the command line, then this plugin should work.

Usage

Open a Python file, open the command palette, type ruffix and hit return. To add key bindings, you can use...

[
  {
    "keys": ["super+option+r"],
    "command": "ruffix",
  }
]

Disclaimer

I'm not affiliated with Ruff, just a very enthusiastic user.

About

A Sublime Text plugin for fixing your Python view with Ruff

License:MIT License


Languages

Language:Python 100.0%