Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

jsxhint-loader

rcs600.2.0

jsxhint loader for webpack

readme

JSXHint Loader for Webpack

Use existing jshint and jsx-loader and configuration for preloader hinting.

Usage


jshint: {
  //Options to jshint-loader https://github.com/webpack/jshint-loader
},
jsx: {
  //Options to jsx-loader https://github.com/petehunt/jsx-loader
}
preLoaders: [
  {
    test: /\.jsx?/,
    exclude: __dirname + '/node_modules',
    loader: 'jsxhint-loader'
  }]