Adds ESLint support to Brunch.
Install the plugin via npm with npm install --save-dev eslint-brunch
.
Configuration settings can be set in any acceptable .eslintrc.*
configuration file formats.
If no configuration file can be found, this plugin will fallback to default ESLint options.
exports.plugins = {
eslint: {
config: {
rules: {semi: 'never'},
},
pattern: /^src\/.*\.jsx?$/,
warnOnly: false,
formatter: 'table',
},
};
Option | Type | Optional | Default | Description |
---|---|---|---|---|
config |
Object |
Yes | undefined |
Options to pass to the ESLint engine (docs) |
pattern |
RegExp |
Yes | /^app\/.*\.jsx?$/ |
Pattern of file paths to be processed |
warnOnly |
Boolean |
Yes | true |
Use warn logging level instead of error |
formatter |
String |
Yes | 'stylish' |
Built-in formatter to use (docs) |
Licensed under the MIT license.