From d119bb3f31e55c74d39196b10da83e1e9ba9a653 Mon Sep 17 00:00:00 2001 From: Daniel Waechter Date: Thu, 2 Nov 2023 06:30:33 -0400 Subject: [PATCH] Update linter path (#280) The lint script has changed to lint.sh --- src/contributors/02-local-development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contributors/02-local-development.md b/src/contributors/02-local-development.md index 7943249..a5b6d39 100644 --- a/src/contributors/02-local-development.md +++ b/src/contributors/02-local-development.md @@ -78,7 +78,7 @@ git clone https://github.com/LemmyNet/lemmy-ui.git --recursive Use `cargo check` to find compilation errors. To start the Lemmy backend, run `cargo run`. It will bind to `0.0.0.0:8536`. -After making changes, you need to format the code with `cargo +nightly fmt --all` and run the linter with `./scripts/fix-clippy.sh`. +After making changes, you need to format the code with `cargo +nightly fmt --all` and run the linter with `./scripts/lint.sh`. ### Frontend development