From 6cfdb582730b357c98339b40b6cea4869542bcb5 Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Sat, 17 Aug 2024 11:30:08 +0200 Subject: [PATCH] Update CONTRIBUTING.md to use ruff for linting --- docs/CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 3e192b4..c74d051 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -144,7 +144,7 @@ If you are using `Windows` we recommend installing and using [WSL](https://docs. 6. When you're done making changes, check that your changes pass ``style linter`` and the ``tests``. ```sh - flake8 + ruff check pytest ``` @@ -184,6 +184,6 @@ Just have a little patience, if everything is in order your pull request will be # Style Guide -Currently the style guide is only defined for the [Language Server](../server) which is writen in ``Python``. +Currently the style guide is only defined for the [Language Server](../server) which is written in ``Python``. -Basically you can rely on [flake8](https://pypi.org/project/flake8/) and [black](https://github.com/psf/black) (along with the configuration files provided in the project directory) to manage all the styling for you. If you installed the [development requirements](../requirements-dev.txt) you already have them installed :) +Basically you can rely on [ruff](https://docs.astral.sh/ruff/) to manage all the styling for you. If you installed the [development requirements](../requirements-dev.txt) you already have them installed :)