From db7f00a094e6b24667c89f7c22e1cc792f1bf331 Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Thu, 17 Aug 2023 20:41:49 -0300 Subject: [PATCH] fix: use more descriptive script names for linting (S)CSS and JavaScript (#369) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 4728ab27..add50ac0 100644 --- a/package.json +++ b/package.json @@ -10,8 +10,8 @@ "debug": "DEBUG=Eleventy* eleventy", "dev": "cross-env NODE_ENV=development eleventy --serve", "lint": "run-s -l lint:*", - "lint:css": "stylelint \"**/*.css\"", - "lint:js": "eslint \"**/*.{js,md}\"", + "lint:styles": "stylelint \"**/*.css\"", + "lint:scripts": "eslint \"**/*.{js,md}\"", "lint:markdown": "markdownlint-cli2 \"**/*.md\"", "lint:yml": "eslint \"**/*.yml\"", "start": "npm-run-all -l clean -p start:*",