I'm trying to lint more than one directory at once with stylelint.
In my package.json
file I have:
"scripts": {
"lint": "stylelint 'pages/**/*.scss', 'global/components/**/*.scss' ; exit 0"
},
If I remove either 'pages/**/*.scss'
or 'global/components/**/*.scss'
, I can lint one of the directories.
Is it possible to lint 2 at once?