From 5a7899dca0db33d4d57a76b511e9fe50cb97c90d Mon Sep 17 00:00:00 2001 From: Simon Hartley <170740+scrhartley@users.noreply.github.com> Date: Tue, 8 Oct 2024 07:51:36 +0100 Subject: [PATCH] Correct lint command in contribution guidelines (#2950) --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5fc32ac5..092e407d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -35,7 +35,7 @@ npm test ## Pull Requests ### Technical Requirements -1. Please lint all proposed changes with the `npm lint-fix` command +1. Please lint all proposed changes with the `npm run format` command 1. All PRs must be made against the `dev` branch, except documentation PRs (that only modify the `www/` directory) which can be made against `master`. 1. Please avoid sending the `dist` files along your PR, only include the `src` ones. 1. Please include test cases in [`/test`](https://github.com/bigskysoftware/htmx/tree/dev/test) and docs in [`/www`](https://github.com/bigskysoftware/htmx/tree/dev/www).