From 8e79666f18da3577480bfa7e2445868386f24a64 Mon Sep 17 00:00:00 2001 From: Umherirrender Date: Thu, 27 Oct 2022 00:10:08 +0200 Subject: [PATCH] build: Remove syntax option from stylelint Error: The "syntax" option is no longer available. You should install an appropriate syntax, e.g. postcss-scss, and use the "customSyntax" option Change-Id: Ia752c3825981ec2e38a8d8996b438fbfd8a02ec6 --- Gruntfile.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 28aa157..7092f8d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -25,9 +25,6 @@ module.exports = function ( grunt ) { ] }, stylelint: { - options: { - syntax: 'less' - }, src: [ 'resources/**/*.{css,less}' ] } } );