From 7f4ad1631891023a33bed9d15a772d9813c022b0 Mon Sep 17 00:00:00 2001 From: Martin Date: Sun, 10 May 2026 13:27:58 +0200 Subject: [PATCH] fix: add lint confirmation messages for CSS and JS linters --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 6673be5..b2be135 100644 --- a/package.json +++ b/package.json @@ -5,8 +5,8 @@ "main": "index.js", "scripts": { "lint:html": "htmlhint \"**/*.html\"", - "lint:css": "stylelint \"css/**/*.css\" \"fonts/**/*.css\"", - "lint:js": "eslint \"js/**/*.js\" --ignore-pattern \"**/*.min.js\"", + "lint:css": "stylelint \"css/**/*.css\" \"fonts/**/*.css\" && echo Stylelint: No errors found", + "lint:js": "eslint \"js/**/*.js\" --ignore-pattern \"**/*.min.js\" && echo ESLint: No errors found", "lint": "npm run lint:html && npm run lint:css && npm run lint:js", "format": "prettier --write \"**/*.{html,css,js,json,md}\" --ignore-path .prettierignore", "format:check": "prettier --check \"**/*.{html,css,js,json,md}\" --ignore-path .prettierignore",