{"library":"standard-loader","title":"standard-loader","type":"library","description":"A webpack loader that lints JavaScript code using JavaScript Standard Style (standard). Version 7.0.0 is current, with maintenance as needed. It integrates with webpack 2+ (webpack 1 dropped in v6). Key differentiators: leverages the popular 'standard' style guide, supports custom parsers like babel-eslint, emits detailed warnings/errors with snazzy output, and follows the conventional module format for webpack loaders.","language":"javascript","status":"active","last_verified":"Sat Apr 25","install":{"commands":["npm install standard-loader"],"cli":{"name":"standard","version":null}},"imports":["import 'standard-loader'","module.exports = { module: { rules: [ { enforce: 'pre', test: /\\.jsx?$/, loader: 'standard-loader', options: {} } ] } }","options: { parser: 'babel-eslint', error: false, snazzy: true, standard: 'standard' }"],"auth":{"required":false,"env_vars":[]},"links":{"homepage":null,"github":"https://github.com/standard/standard-loader","docs":null,"changelog":null,"pypi":null,"npm":"https://www.npmjs.com/package/standard-loader","openapi_spec":null,"status_page":null,"smithery":null},"quickstart":{"code":"// webpack.config.js\nmodule.exports = {\n  module: {\n    rules: [\n      {\n        enforce: 'pre',\n        test: /\\.jsx?$/,\n        loader: 'standard-loader',\n        exclude: /node_modules/,\n        options: {\n          parser: 'babel-eslint',\n          snazzy: true\n        }\n      }\n    ]\n  }\n};","lang":"javascript","description":"Configure standard-loader as a webpack preloader to lint .js and .jsx files using Standard style with optional parser.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}