From 4050df36b90086e07c302b8b8cd1f150ded432e5 Mon Sep 17 00:00:00 2001 From: jnachtigall Date: Tue, 8 Oct 2024 14:13:38 +0200 Subject: [PATCH] lint:stylelint also checking scss Needed to comply with https://mantine.dev/styles/sass/#usage-with-nextjs --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index da95653..3b53599 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "start": "next start", "typecheck": "tsc --noEmit", "lint": "next lint && npm run lint:stylelint", - "lint:stylelint": "stylelint '**/*.css' --cache", + "lint:stylelint": "stylelint '**/*.*.{css,scss}' --cache", "jest": "jest", "jest:watch": "jest --watch", "prettier:check": "prettier --check \"**/*.{ts,tsx}\"",