From d0a83604f8ae7531a4fc84d84138d8a31b29b06c Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Wed, 31 Jan 2024 21:03:48 -0800 Subject: [PATCH] Fix style linting This command wasn't working as we were targeting the wrong type of file. Fixed it. Whoopsie. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1652d966d..c21426b76 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "author": "The Ilios Team (info@iliosproject.org)", "scripts": { "lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"", - "lint:css": "stylelint \"**/*.css\"", + "lint:css": "stylelint \"**/*.scss\"", "lint:css:fix": "concurrently \"npm:lint:css -- --fix\"", "lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"", "lint:hbs": "ember-template-lint .",