0.1.0 • Published 7 years ago

react-app-rewire-stylelint-custom-processor-loader v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

React App Rewire Stylelint Custom Processor Loader

npm Build Status codecov

Dependencies Status Dev Dependencies Status Peer Dependencies Status

Configure CRA project to stylelint with stylelint-custom-processor-loader.

Install

npm install react-app-rewire-stylelint-custom-processor
# or
yarn add react-app-rewire-stylelint-custom-processor

Usage

// config-overrides.js
const rewireStylelintCustomProcessor = require('react-app-rewire-stylelint-custom-processor');

module.exports = function override(config, env) {
  config = rewireStylelintCustomProcessor(config, env, { /* options... */ });
  return config;
}