eslint-loader
Advanced tools
Comparing version 1.3.0 to 1.4.0
@@ -0,1 +1,6 @@ | ||
# 1.4.0 - 2016-02-17 | ||
- Added: support for eslint@^3.0.0 | ||
([#96](https://github.com/MoOx/eslint-loader/issues/96)) | ||
# 1.3.0 - 2016-02-17 | ||
@@ -2,0 +7,0 @@ |
{ | ||
"name": "eslint-loader", | ||
"version": "1.3.0", | ||
"version": "1.4.0", | ||
"description": "eslint loader (for webpack)", | ||
@@ -19,3 +19,3 @@ "keywords": [ | ||
"peerDependencies": { | ||
"eslint": ">=1.6.0 <3.0.0" | ||
"eslint": ">=1.6.0 <4.0.0" | ||
}, | ||
@@ -27,4 +27,4 @@ "dependencies": { | ||
"devDependencies": { | ||
"eslint": "^2.0.0", | ||
"eslint-friendly-formatter": "^1.0.3", | ||
"eslint": "^3.0.0", | ||
"eslint-friendly-formatter": "^2.0.4", | ||
"npmpub": "^3.0.1", | ||
@@ -31,0 +31,0 @@ "tape": "^4.0.0", |
@@ -35,4 +35,3 @@ # eslint-loader [![Build Status](http://img.shields.io/travis/MoOx/eslint-loader.svg)](https://travis-ci.org/MoOx/eslint-loader) | ||
loaders: [ | ||
{test: /\.js$/, loader: "babel-loader", exclude: /node_modules/}, | ||
{test: /\.js$/, loader: "eslint-loader", exclude: /node_modules/} | ||
{test: /\.js$/, loaders: [ "babel-loader", "eslint-loader" ], exclude: /node_modules/}, | ||
] | ||
@@ -61,5 +60,5 @@ } | ||
You can pass [eslint options](http://eslint.org/docs/user-guide/command-line-interface) directly by | ||
You can pass [eslint options](http://eslint.org/docs/developer-guide/nodejs-api#cliengine) directly by | ||
- Adding a query string to the loader for this loader usabe only | ||
- Adding a query string to the loader for this loader usage only | ||
@@ -90,3 +89,3 @@ ```js | ||
**Note that you can use both method in order to benefit from global & specific options** | ||
**Note that you can use both methods in order to benefit from global & specific options** | ||
@@ -98,3 +97,3 @@ #### `fix` (default: false) | ||
**Be careful, this option might generate webpack to enter an infinite build loop if | ||
**Be careful, this option might cause webpack to enter an infinite build loop if | ||
some issues cannot be fixed properly.** | ||
@@ -101,0 +100,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12671
218