Skip to content

Instantly share code, notes, and snippets.

@mezerotm
Created July 6, 2018 21:21
Show Gist options
  • Save mezerotm/27bdeec7dd8b9010af9696254843e26c to your computer and use it in GitHub Desktop.
Save mezerotm/27bdeec7dd8b9010af9696254843e26c to your computer and use it in GitHub Desktop.
webpack 3 setup with javascript standard style
module.exports = {
extends: [
'standard'
],
}
{
"devDependencies": {
"eslint-loader": "^2.0.0",
"standard": "^11.0.1",
}
}
module.exports = {
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: [
{
loader: 'eslint-loader',
options: {
fix: true,
}
}
]
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment