Skip to content

Instantly share code, notes, and snippets.

@artyomtrityak
Created January 26, 2017 22:21
Show Gist options
  • Save artyomtrityak/34025fb3b5ce05ebeb1ddacca01d0c92 to your computer and use it in GitHub Desktop.
Save artyomtrityak/34025fb3b5ce05ebeb1ddacca01d0c92 to your computer and use it in GitHub Desktop.
rules: [
{
test: /\.jsx$/,
exclude: /node_modules|app\/assets/,
enforce: "pre",
loader: "eslint-loader",
options: {
failOnWarning: false,
failOnError: true
}
},
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel-loader'
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment