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
This commit is contained in:
Umherirrender 2022-10-27 00:10:08 +02:00
parent 3d6512ec7a
commit 8e79666f18

View file

@ -25,9 +25,6 @@ module.exports = function ( grunt ) {
] ]
}, },
stylelint: { stylelint: {
options: {
syntax: 'less'
},
src: [ 'resources/**/*.{css,less}' ] src: [ 'resources/**/*.{css,less}' ]
} }
} ); } );