From 9c96cb21d2ec76be819b99006d9b57b70329a91c Mon Sep 17 00:00:00 2001 From: Eduard Smet Date: Mon, 15 Dec 2025 13:57:22 +0100 Subject: [PATCH] fix: Make oxlint return with a non zero exit code on lint warnings --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5128b01..cece57a 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "type": "module", "scripts": { "lint": "oxlint --type-aware --fix", - "lint:check": "oxlint --type-aware", + "lint:check": "oxlint --type-aware --deny-warnings", "format": "prettier --write '**/*{.md,.yml,.yaml,.json,.js,.ts,.vue}' --cache", "format:check": "prettier --check '**/*{.md,.yml,.yaml,.json,.js,.ts,.vue}' --cache", "vue-tsc": "vue-tsc",