From 00a3892672075f5316a3799dc7d97db801e38e29 Mon Sep 17 00:00:00 2001 From: Timothy Jones Date: Tue, 22 Oct 2024 00:18:58 +1100 Subject: [PATCH] chore(scripts): Rename eslint -> lint --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 4f7a56c3e..27cb140c6 100644 --- a/package.json +++ b/package.json @@ -4,9 +4,9 @@ "description": "replacement for `npm version` with automatic CHANGELOG generation", "bin": "bin/cli.js", "scripts": { - "eslint": "eslint .", - "eslint:fix": "npm run eslint -- --fix", - "posttest": "npm run eslint && npm run format:check", + "lint": "eslint .", + "lint:fix": "npm run lint -- --fix", + "posttest": "npm run lint && npm run format:check", "format:base": "prettier \"./**/*.{ts,js}\"", "format:fix": "npm run format:base -- --write", "format:check": "npm run format:base -- --check",