Skip to content

riasvdv/laravel-mix-eslint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

NPM NPM NPM

Laravel Mix Eslint

This extension provides instant Eslint support to your Mix (v2.1 and up) builds.

Usage

First, install the extension.

npm install laravel-mix-eslint --save-dev

Then, require it within your webpack.mix.js file, like so:

let mix = require('laravel-mix')

require('laravel-mix-eslint')

mix
  .js('resources/assets/js/app.js', 'public/js')
  .eslint({
    fix: true,
    extensions: ['js']
    //...
  })
  .less('resources/assets/less/app.less', 'public/css')

You can pass an object with options for the eslint-webpack-plugin to the mix.eslint() function.

And you're done! Compile everything down with npm run dev.