npm install --save-dev @aureldvx/stylelint
# or
yarn add --dev @aureldvx/stylelint
# or
pnpm install --save-dev @aureldvx/stylelint
Usage
To use the configuration, add the following to your stylelint.config.js file:
import{defineConfig}from'@aureldvx/stylelint';// The default config parse only CSS filesexportdefaultdefineConfig();// If you want to parse SCSS tooexportdefaultdefineConfig({scss: true,});