Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/riasvdv/laravel-mix-eslint

mix.eslint()
https://github.com/riasvdv/laravel-mix-eslint

eslint eslint-loader laravel-mix laravel-mix-plugin

Last synced: about 17 hours ago
JSON representation

mix.eslint()

Awesome Lists containing this project

README

        


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:

```js
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](https://github.com/webpack-contrib/eslint-webpack-plugin) to the `mix.eslint()` function.

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