From d32a914ac72a32e4a51e5389e092a06f59a0a758 Mon Sep 17 00:00:00 2001 From: jakecastelli <38635403+jakecastelli@users.noreply.github.com> Date: Thu, 11 Apr 2024 06:45:36 +0700 Subject: [PATCH] doc: add lint-js-fix into BUILDING.md When there is any auto-fixable linting errors, there is not a way to pass `--fix` into `make lint-js` as far as I am aware of. Spent quiet some time fixing them one by one and just realised `lint-js-fix` exists. PR-URL: https://github.com/nodejs/node/pull/52290 Reviewed-By: Luigi Pinca Reviewed-By: Moshe Atlow Reviewed-By: Yagiz Nizipli --- BUILDING.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BUILDING.md b/BUILDING.md index c64706a458754a..0b0362e8bf3749 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -327,6 +327,8 @@ documentation tests. To run the linter without running tests, use `make lint`/`vcbuild lint`. It will lint JavaScript, C++, and Markdown files. +To fix auto fixable JavaScript linting errors, use `make lint-js-fix`. + If you are updating tests and want to run tests in a single test file (e.g. `test/parallel/test-stream2-transform.js`):