broccoli-lint-eslint
Advanced tools
Comparing version 4.2.0 to 4.2.1
# Change Log | ||
## [v4.2.1](https://github.com/ember-cli/broccoli-lint-eslint/tree/v4.2.1) (2017-11-07) | ||
[Full Changelog](https://github.com/ember-cli/broccoli-lint-eslint/compare/v4.2.0...v4.2.1) | ||
**Fixed bugs:** | ||
- Invoke super with the valid args to avoid ENOENT [\#115](https://github.com/ember-cli/broccoli-lint-eslint/pull/115) ([rwjblue](https://github.com/rwjblue)) | ||
**Merged pull requests:** | ||
- Failing test PR emulating ember-cli/ember-cli\#7347 [\#118](https://github.com/ember-cli/broccoli-lint-eslint/pull/118) ([rwjblue](https://github.com/rwjblue)) | ||
- Cleaning up unused options [\#114](https://github.com/ember-cli/broccoli-lint-eslint/pull/114) ([chrmod](https://github.com/chrmod)) | ||
## [v4.2.0](https://github.com/ember-cli/broccoli-lint-eslint/tree/v4.2.0) (2017-10-27) | ||
@@ -4,0 +16,0 @@ [Full Changelog](https://github.com/ember-cli/broccoli-lint-eslint/compare/v4.1.0...v4.2.0) |
@@ -41,3 +41,3 @@ 'use strict'; | ||
* @param {Object} inputNode Node from broccoli.makeTree | ||
* @param {{config: String, rulesdir: String, format: String}} options Filter options | ||
* @param {{format: String, options: EslintOptions}} options Filter options | ||
* @returns {EslintValidationFilter} Filter obconfig @constructor | ||
@@ -135,3 +135,3 @@ */ | ||
//based on the extensions property. | ||
const filterPath = Filter.prototype.getDestFilePath.call(this, relativePath); | ||
const filterPath = Filter.prototype.getDestFilePath.apply(this, arguments); | ||
const fullPath = path.join(this.eslintrc, relativePath); | ||
@@ -138,0 +138,0 @@ |
{ | ||
"name": "broccoli-lint-eslint", | ||
"version": "4.2.0", | ||
"version": "4.2.1", | ||
"description": "broccoli filter that runs eslint", | ||
@@ -38,3 +38,3 @@ "main": "lib/index.js", | ||
"broccoli-concat": "^3.2.2", | ||
"broccoli-persistent-filter": "^1.2.0", | ||
"broccoli-persistent-filter": "^1.4.3", | ||
"eslint": "^4.0.0", | ||
@@ -41,0 +41,0 @@ "json-stable-stringify": "^1.0.1", |
@@ -69,4 +69,3 @@ # broccoli-lint-eslint | ||
options: { | ||
configFile: this.eslintrc.app + '/eslint.json', | ||
rulesdir: this.eslintrc.app | ||
configFile: this.eslintrc.app + '/eslint.json' | ||
}, | ||
@@ -73,0 +72,0 @@ testGenerator: testGenerator |
36037
129