├── .gitattributes ├── .python-version ├── LICENSE ├── LSP-ruff.sublime-commands ├── LSP-ruff.sublime-settings ├── Main.sublime-menu ├── README.md ├── dependencies.json ├── messages.json ├── messages └── 2.0.0.txt ├── plugin.py ├── requirements.txt └── sublime-package.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-ruff/HEAD/.gitattributes -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.8 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-ruff/HEAD/LICENSE -------------------------------------------------------------------------------- /LSP-ruff.sublime-commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-ruff/HEAD/LSP-ruff.sublime-commands -------------------------------------------------------------------------------- /LSP-ruff.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-ruff/HEAD/LSP-ruff.sublime-settings -------------------------------------------------------------------------------- /Main.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-ruff/HEAD/Main.sublime-menu -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-ruff/HEAD/README.md -------------------------------------------------------------------------------- /dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-ruff/HEAD/dependencies.json -------------------------------------------------------------------------------- /messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-ruff/HEAD/messages.json -------------------------------------------------------------------------------- /messages/2.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-ruff/HEAD/messages/2.0.0.txt -------------------------------------------------------------------------------- /plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-ruff/HEAD/plugin.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ruff==0.14.8 2 | -------------------------------------------------------------------------------- /sublime-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sublimelsp/LSP-ruff/HEAD/sublime-package.json --------------------------------------------------------------------------------