{"library":"semistandard-loader","title":"semistandard-loader","description":"A webpack pre-loader that runs Flet/semistandard (a semicolon-aware variant of JavaScript Standard Style) during builds. Version 0.0.4 is the latest and only stable release; no further updates have been made. It integrates seamlessly with webpack 1.x and standard's configuration options (e.g., parser). Unlike ESLint loaders, this enforces semistandard's specific style rules out of the box with minimal configuration.","language":"javascript","status":"abandoned","last_verified":"Fri May 01","install":{"commands":["npm install semistandard-loader"],"cli":null},"imports":["In webpack 1.x config: { module: { preLoaders: [{ test: /\\.jsx?$/, loader: 'semistandard', exclude: /node_modules/ }] }, semistandard: { parser: 'babel-eslint' } }","var webpack = require('webpack');","var config = { ... }; module.exports = config;"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// webpack.config.js\nvar webpack = require('webpack');\n\nvar config = {\n  entry: './index.js',\n  output: { filename: 'bundle.js' },\n  module: {\n    preLoaders: [\n      {\n        test: /\\.jsx?$/,\n        loader: 'semistandard',\n        exclude: /(node_modules|bower_components)/\n      }\n    ],\n    loaders: [\n      // your other loaders\n    ]\n  },\n  semistandard: {\n    // optional: parser: 'babel-eslint'\n  }\n};\n\nmodule.exports = config;","lang":"javascript","description":"Shows how to set up semistandard-loader as a preloader in a webpack 1 configuration file.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}