From f1a75d8e8123ccd6c32ded5ae960e767dfbab2a3 Mon Sep 17 00:00:00 2001 From: Kendall Garner <17521368+kgarner7@users.noreply.github.com> Date: Tue, 30 Sep 2025 07:58:57 -0700 Subject: [PATCH] allow zero warnings on lint --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 96ed5987..1568e446 100644 --- a/package.json +++ b/package.json @@ -30,9 +30,9 @@ "i18next": "i18next -c src/i18n/i18next-parser.config.js", "postinstall": "electron-builder install-app-deps", "lint": "pnpm run lint-code && pnpm run lint-styles", - "lint-code": "eslint --cache .", + "lint-code": "eslint --max-warnings=0 --cache .", "lint-code:fix": "eslint --cache --fix .", - "lint-styles": "stylelint 'src/**/*.{css,scss}'", + "lint-styles": "stylelint --max-warnings=0 'src/**/*.{css,scss}'", "lint-styles:fix": "stylelint 'src/**/*.{css,scss}' --fix", "lint:fix": "pnpm run lint-code:fix && pnpm run lint-styles:fix", "package": "pnpm run build && electron-builder",