0.2.0 • Published 9 years ago

jsxhint-loader v0.2.0

Weekly downloads
34
License
-
Repository
-
Last release
9 years ago

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'
  }]