Skip to content

tyler36/laravel-mix-stylelint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

laravel-mix-stylelint

This extension is designed to allow you add stylelint to your laravel-mix chain.

Installation

  1. Require the package through yarn or npm. Laravel-mix will install the required dependencies as needed.

    yarn add laravel-mix-stylelint
  2. Add a configuration file to your project root.

    By default, this package looks for .stylelintrc.js in your project root.

    This can be overridden during the follow step.

  3. Import the package into your laravel webpack config file (webpack.mix.js).

    require( 'laravel-mix-stylelint' );
    ...
    mix.stylelint();
  • Defaults may be overridden by passing an object to the mix call:

    mix.stylelint({configFile:  path.join( {'default.js'} });
  • The default is to use SCSS syntax and scan all SCCS, VUE, & BLADE files.

        configFile:  path.join( __dirname, '../../.stylelintrc.js' ),
        context:     './resources',
        failOnError: false,
        files:       ['**/*.scss', '**/*.vue', '**/*.blade.php'],
        quiet:       false,
        syntax:      'scss',

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published