Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-loader

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-loader - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

4

CHANGELOG.md

@@ -0,1 +1,5 @@

# 1.1.1 - 2015-10-08
- Fixed: `failOnError` and `failOnWarning` now print messages.
# 1.1.0 - 2015-10-08

@@ -2,0 +6,0 @@

6

index.js

@@ -75,6 +75,8 @@ var eslint = require("eslint")

if (config.failOnError && res.errorCount) {
throw new Error("Module failed because of a eslint error.")
throw new Error("Module failed because of a eslint error.\n"
+ messages)
}
else if (config.failOnWarning && res.warningCount) {
throw new Error("Module failed because of a eslint warning.")
throw new Error("Module failed because of a eslint warning.\n"
+ messages)
}

@@ -81,0 +83,0 @@ }

{
"name": "eslint-loader",
"version": "1.1.0",
"version": "1.1.1",
"description": "eslint loader (for webpack)",

@@ -5,0 +5,0 @@ "keywords": [

@@ -95,2 +95,5 @@ # eslint-loader [![Build Status](http://img.shields.io/travis/MoOx/eslint-loader.svg)](https://travis-ci.org/MoOx/eslint-loader)

**Be careful, this option might generate webpack to enter an infinite build loop if
some issues cannot be fixed properly.**
#### `formatter` (default: eslint stylish formatter)

@@ -97,0 +100,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc