{"library":"scss-lint-loader","title":"scss-lint-loader","description":"Webpack loader that runs scss-lint to enforce SCSS best practices. This package (v1.0.1) is a thin wrapper around scss-lint, with no active development since 2017. It lacks support for modern Webpack 5+, and scss-lint itself was deprecated and replaced by stylelint. Use 'stylelint-webpack-plugin' instead. Release cadence: no releases since initial 1.0.0/1.0.1.","language":"javascript","status":"deprecated","last_verified":"Fri May 01","install":{"commands":["npm install scss-lint-loader"],"cli":{"name":"scss-lint","version":null}},"imports":["module.exports = { module: { rules: [{ test: /\\.scss$/, loader: 'scss-lint-loader' }] } }","/* webpack.config.js */\n{ test: /\\.scss$/, loader: 'scss-lint-loader', options: { config: '.scss-lint.yml' } }","module.exports = { module: { rules: [{ test: /\\.scss$/, use: ['scss-lint-loader'] }] } }"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// webpack.config.js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        test: /\\.scss$/,\n        loader: 'scss-lint-loader',\n        options: {\n          config: '.scss-lint.yml',\n          failOnError: true\n        }\n      }\n    ]\n  }\n};","lang":"javascript","description":"Shows how to configure scss-lint-loader in Webpack to lint SCSS files using a custom config file and fail on errors.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}