Code Monkey home page Code Monkey logo

gulp-reporter's Introduction

gulp-reporter

NPM version Travis AppVeyor Codecov David

Error report for: CSSLint EditorConfig ESLint HTMLHint JSCS JSHint JSONLint PostCSS Standard StyLint TSLint XO

Analyzing blame of the error, only fail for errors that belong to current GIT user.

Install

npm install gulp-reporter

Usage

gulp.src('test/fixtures/eslint/invalid.js')
  .pipe(eslint())
  .pipe(reporter(options));

demo

API

reporter(options)

or

reporter((file) => options)

options.browser

Type: boolean

Default: false

Report error messages right in your browser.

options.output

Type: boolean|function|WritableStream

Default: true and false for Special output format

Report error messages in fancy-log or your function|WritableStream

options.sort

Type: boolean|function

Default: true

Messages will be sorted by fileName/severity/line/column, or your function.

options.author

Type: {name?: string|RegExp, email?: string|RegExp}

Default: Read from GIT pre-commit environment and fallbacks with GIT commad git log --max-count=1 --no-merges

Do not fail for errors that not belong to specified author.

Do not work when options.blame set to false

options.expires

Type: string for time periods, number of unix timestamp, Date

Do not fail for old errors that create early specified time.

Do not work when options.blame set to false

options.maxLineLength

Type: number

Default: 512

Hide each error in lines that length greater than this threshold.

options.mapper

Type: function|null

Default: null

Convert errors.

reporter({
  mapper: file => {
    const path = file.path;
    return error => {
      // Do not report unrelated errors.
      if (error.fileName === path) {
        return error
      }
    }
  }
})

options.fail

Type: boolean|function

Default: true

Stop a task/stream if an error has been reported for any file, but wait for all of them to be processed first.

options.blame

Type: boolean

Default: true

Enable or disable git-blame related features (options.author, options.expires).

Language localization support for HTMLHint JSHint EditorConfig:

  • en
  • zh_CN
  • zh_TW

POSIX systems: The returned locale refers to the LC_MESSAGE category, suitable for selecting the language used in the user interface for message translation.

Special output format

Related

gulp-reporter's People

Contributors

greenkeeper[bot] avatar gucong3000 avatar marsup avatar niftylettuce avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

marsup

gulp-reporter's Issues

An in-range update of eslint is breaking the build 🚨

Version 3.14.1 of eslint just got published.

Branch Build failing 🚨
Dependency eslint
Current Version 3.14.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As eslint is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/travis-ci/push The Travis CI build is in progress Details

  • continuous-integration/appveyor/branch AppVeyor build failed Details

Release Notes v3.14.1
  • 791f32b Fix: brace-style false positive for keyword method names (fixes #7974) (#7980) (Teddy Katz)
  • d7a0add Docs: Add ESLint tutorial embed to getting started (#7971) (Jamis Charles)
  • 72d41f0 Fix: no-var autofix syntax error in single-line statements (fixes #7961) (#7962) (Teddy Katz)
  • b9e5b68 Fix: indent rule crash on sparse array with object (fixes #7959) (#7960) (Gyandeep Singh)
  • a7bd66a Chore: Adding assign/redeclare tests to no-undefined (refs #7964) (#7965) (Kevin Partington)
  • 8bcbf5d Docs: typo in prefer-promise-reject-errors (#7958) (Patrick McElhaney)
Commits

The new version differs by 8 commits .

  • e544644 3.14.1
  • 1297635 Build: package.json and changelog update for 3.14.1
  • 791f32b Fix: brace-style false positive for keyword method names (fixes #7974) (#7980)
  • d7a0add Docs: Add ESLint tutorial embed to getting started (#7971)
  • 72d41f0 Fix: no-var autofix syntax error in single-line statements (fixes #7961) (#7962)
  • b9e5b68 Fix: indent rule crash on sparse array with object (fixes #7959) (#7960)
  • a7bd66a Chore: Adding assign/redeclare tests to no-undefined (refs #7964) (#7965)
  • 8bcbf5d Docs: typo in prefer-promise-reject-errors (#7958)

See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of typescript is breaking the build 🚨

Version 2.3.4 of typescript just got published.

Branch Build failing 🚨
Dependency typescript
Current Version 2.3.3
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As typescript is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • continuous-integration/travis-ci/push The Travis CI build passed Details
  • coverage/coveralls First build on greenkeeper/typescript-2.3.4 at 77.778% Details
  • continuous-integration/appveyor/branch AppVeyor build failed Details

Release Notes TypeScript 2.3.4

This release includes a new flag for tsserver to specify location of npm for nvm users.

Download:

Commits

The new version differs by 12 commits.

  • 1a579d9 Update LKG
  • e023dc3 Merge pull request #16113 from Microsoft/fixNpmLocationWithSpaces
  • d7555ed Fix equals
  • 47a0a7c Wrap npmLocation if needed
  • 47bd5af Allow configurable npmLocation for typingsInstaller (#16084) (#16102)
  • d333378 Merge branch 'release-2.3' of https://github.com/Microsoft/TypeScript into release-2.3
  • f80ca90 Add project telemetry (#16085)
  • fc4d109 Fix build breaks with the instrumenter
  • 196aba6 Merge pull request #16051 from Microsoft/PortRulesProviderFixToRelease-2.3
  • 9919b58 Updating compiler release version to 2.3.4
  • 3b9ef4e Changes from CR feedback
  • dcab328 RulesProvider performance improvements

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of sinon is breaking the build 🚨

Version 4.1.4 of sinon was just published.

Branch Build failing 🚨
Dependency sinon
Current Version 4.1.3
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

sinon is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push The Travis CI build is in progress Details
  • ci/circleci Your tests passed on CircleCI! Details
  • continuous-integration/appveyor/branch AppVeyor build failed Details

Release Notes Minor fix for Symbol names and deprecation of spy.reset
  • Fix: assertion error messages did not handle Symbol names (#1640)
  • Deprecate spy.reset(), use spy.resetHistory() instead (#1446)
Commits

The new version differs by 36 commits.

  • 1ea2749 Update docs/changelog.md and set new release id in docs/_config.yml
  • 078c082 Add release documentation for v4.1.4
  • 571263e 4.1.4
  • f2ee9f1 Update History.md and AUTHORS for new release
  • a8262dd Assertion error messages handle symbolic method names
  • 8fa1e14 Merge pull request #1641 from mroderick/point-to-stack-overflow
  • 7c1ebd0 Update issue links to point to sinonjs/sinon
  • 93418f6 Update documentation to emphasize Stack Overflow
  • ca9e2fa Merge pull request #1636 from fearphage/fix-headless-chrome-in-circle
  • 39186f4 use google-chrome-unstable for tests
  • 6315621 invalidate cache
  • d078af9 try using default chrome install
  • 177c4b6 upgraded to the lastest official version of mochify
  • ecdc4e0 test with updated mochify
  • 360c2e7 added more details and notes

There are 36 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of tslint is breaking the build 🚨

Version 5.6.0 of tslint just got published.

Branch Build failing 🚨
Dependency tslint
Current Version 5.5.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As tslint is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details
  • coverage/coveralls First build on greenkeeper/tslint-5.6.0 at 98.83% Details

Release Notes v5.6.0

🎉 New rules, options, and fixers

🛠 Bugfixes & enhancements

Thanks to our contributors!

  • Klaus Meinhardt
  • Julian Verdurmen
  • Alexandre Alonso
  • Josh Goldberg
  • ksvitkovsky
  • Daisuke Yokomoto
  • Andrii Dieiev
  • Florent Suc
  • Jason Killian
  • Amin Pakseresht
  • reduckted
  • vilicvane
  • Russell Briggs
  • Andy Hanson
  • Leo Liang
  • Dan Homola
  • BehindTheMath
  • David Golightly
  • aervin
  • Daniel Kucal
  • Ika
  • Chris Barr
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

Empty error message for Stylint reports

cat package.json

{
  "dependencies": {
    "gulp": "4.0.0",
    "gulp-reporter": "2.7.0",
    "gulp-stylint": "4.0.1"
  }
}

cat gulpfile.js

const Gulp = require('gulp');
const Stylint = require('gulp-stylint');
const Reporter = require('gulp-reporter');

Gulp.task('test:stylint', () => (
  Gulp.src('packages/**/*.styl')
    .pipe(Stylint())
    .pipe(Reporter())
));

gulp test:stylint --silent

[10:25:58] packages/common-ui/src/components/ui.styl
    01:01 ❌️                                                 (StyLint)

An in-range update of eslint is breaking the build 🚨

Version 4.6.0 of eslint just got published.

Branch Build failing 🚨
Dependency eslint
Current Version 4.5.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As eslint is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • continuous-integration/travis-ci/push The Travis CI build is in progress Details
  • ci/circleci Your tests failed on CircleCI Details
  • continuous-integration/appveyor/branch AppVeyor build failed Details

Release Notes v4.6.0
  • 56dd769 Docs: fix link format in prefer-arrow-callback.md (#9198) (Vse Mozhet Byt)
  • 6becf91 Update: add eslint version to error output. (fixes #9037) (#9071) (薛定谔的猫)
  • 0e09973 New: function-paren-newline rule (fixes #6074) (#8102) (Teddy Katz)
  • 88a64cc Chore: Make parseJsonConfig() a pure function in Linter (#9186) (Teddy Katz)
  • 1bbac51 Fix: avoid breaking eslint-plugin-eslint-comments (fixes #9193) (#9196) (Teddy Katz)
  • 3e8b70a Fix: off-by-one error in eslint-disable comment checking (#9195) (Teddy Katz)
  • 73815f6 Docs: rewrite prefer-arrow-callback documentation (fixes #8950) (#9077) (Charles E. Morgan)
  • 0d3a854 Chore: avoid mutating report descriptors in report-translator (#9189) (Teddy Katz)
  • 2db356b Update: no-unused-vars Improve message to include the allowed patterns (#9176) (Eli White)
  • 8fbaf0a Update: Add configurability to generator-star-spacing (#8985) (Ethan Rutherford)
  • 8ed779c Chore: remove currentScopes property from Linter instances (refs #9161) (#9187) (Teddy Katz)
  • af4ad60 Fix: Handle error when running init without npm (#9169) (Gabriel Aumala)
  • 4b94c6c Chore: make parse() a pure function in Linter (refs #9161) (#9183) (Teddy Katz)
  • 1be5634 Chore: don't make Linter a subclass of EventEmitter (refs #9161) (#9177) (Teddy Katz)
  • e95af9b Chore: don't include internal test helpers in npm package (#9160) (Teddy Katz)
  • 6fb32e1 Chore: avoid using private Linter APIs in astUtils tests (refs #9161) (#9173) (Teddy Katz)
  • de6dccd Docs: add documentation for Linter methods (refs #6525) (#9151) (Teddy Katz)
  • 2d90030 Chore: remove unused assignment. (#9182) (薛定谔的猫)
  • d672aef Chore: refactor reporting logic (refs #9161) (#9168) (Teddy Katz)
  • 5ab0434 Fix: indent crash on sparse arrays with "off" option (fixes #9157) (#9166) (Teddy Katz)
  • c147b97 Chore: Make SourceCodeFixer accept text instead of a SourceCode instance (#9178) (Teddy Katz)
  • f127423 Chore: avoid using private Linter APIs in Linter tests (refs #9161) (#9175) (Teddy Katz)
  • 2334335 Chore: avoid using private Linter APIs in SourceCode tests (refs #9161) (#9174) (Teddy Katz)
  • 2dc243a Chore: avoid using internal Linter APIs in RuleTester (refs #9161) (#9172) (Teddy Katz)
  • d6e436f Fix: no-extra-parens reported some parenthesized IIFEs (fixes #9140) (#9158) (Teddy Katz)
  • e6b115c Build: Add an edit link to the rule docs’ metadata (#9049) (Jed Fox)
  • fcb7bb4 Chore: avoid unnecessarily complex forEach calls in no-extra-parens (#9159) (Teddy Katz)
  • ffa021e Docs: quotes rule - when does \n require backticks (#9135) (avimar)
  • 60c5148 Chore: improve coverage in lib/*.js (#9130) (Teddy Katz)
Commits

The new version differs by 31 commits.

  • 8f01a99 4.6.0
  • c0acbf2 Build: changelog update for 4.6.0
  • 56dd769 Docs: fix link format in prefer-arrow-callback.md (#9198)
  • 6becf91 Update: add eslint version to error output. (fixes #9037) (#9071)
  • 0e09973 New: function-paren-newline rule (fixes #6074) (#8102)
  • 88a64cc Chore: Make parseJsonConfig() a pure function in Linter (#9186)
  • 1bbac51 Fix: avoid breaking eslint-plugin-eslint-comments (fixes #9193) (#9196)
  • 3e8b70a Fix: off-by-one error in eslint-disable comment checking (#9195)
  • 73815f6 Docs: rewrite prefer-arrow-callback documentation (fixes #8950) (#9077)
  • 0d3a854 Chore: avoid mutating report descriptors in report-translator (#9189)
  • 2db356b Update: no-unused-vars Improve message to include the allowed patterns (#9176)
  • 8fbaf0a Update: Add configurability to generator-star-spacing (#8985)
  • 8ed779c Chore: remove currentScopes property from Linter instances (refs #9161) (#9187)
  • af4ad60 Fix: Handle error when running init without npm (#9169)
  • 4b94c6c Chore: make parse() a pure function in Linter (refs #9161) (#9183)

There are 31 commits in total.

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of eslint-plugin-compat is breaking the build 🚨

Version 2.3.0 of eslint-plugin-compat was just published.

Branch Build failing 🚨
Dependency eslint-plugin-compat
Current Version 2.2.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

eslint-plugin-compat is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/appveyor/branch AppVeyor build succeeded Details
  • continuous-integration/travis-ci/push The Travis CI build passed Details
  • ci/circleci Your tests failed on CircleCI Details

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

How to add support for compat?

I'm using https://github.com/amilajack/eslint-plugin-compat however the links are incorrect. Is there a way we can detect based off rules and then fix URL's? For example below, the URL is https://goo.gl/DPWPba however we should link to https://caniuse.com/#search=Promise instead perhaps? However we need both Kangax and CanIUse support per https://github.com/amilajack/eslint-plugin-compat/blob/89370554380775f69b7760c0260f5c5fecaa2dcc/src/providers/index.js#L2-L3.

    04387:42 ❌️ Promise.resolve() is not supported in Opera Mobile 12.1, Opera Mini all, IE Mobile 10, IE 10, Blackberry Browser 7
(ESLint compat/compat https://goo.gl/DPWPba)

An in-range update of eslint-plugin-promise is breaking the build 🚨

☝️ Greenkeeper’s updated Terms of Service will come into effect on April 6th, 2018.

Version 3.7.0 of eslint-plugin-promise was just published.

Branch Build failing 🚨
Dependency eslint-plugin-promise
Current Version 3.6.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

eslint-plugin-promise is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ci/circleci Your tests passed on CircleCI! Details
  • continuous-integration/travis-ci/push The Travis CI build passed Details
  • continuous-integration/appveyor/branch AppVeyor build succeeded Details
  • codecov/project 99.25% (-0.15%) compared to a513b65 Details
  • codecov/patch Coverage not affected when comparing a513b65...5ef7f04 Details

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of sinon is breaking the build 🚨

Version 2.3.1 of sinon just got published.

Branch Build failing 🚨
Dependency sinon
Current Version 2.3.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As sinon is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • continuous-integration/travis-ci/push The Travis CI build passed Details
  • coverage/coveralls First build on greenkeeper/sinon-2.3.1 at 77.778% Details
  • continuous-integration/appveyor/branch AppVeyor build succeeded Details
  • continuous-integration/appveyor/pr AppVeyor build cancelled Details
  • continuous-integration/travis-ci/pr The Travis CI build could not complete due to an error Details

Release Notes Make calledAfter symetric with calledBefore
  • Make calledAfter symetric with calledBefore (#1407)
Commits

The new version differs by 8 commits.

  • 94f422c Update docs/changelog.md and set new release id in docs/_config.yml
  • 69bf8f2 Add release documentation for v2.3.1
  • eee4564 2.3.1
  • 0dc2505 Update Changelog.txt and AUTHORS for new release
  • 36c6cdc Merge pull request #1407 from lucasfcosta/simmetric-callAfter
  • 5301cc1 Merge pull request #1420 from mroderick/remove-issue-397-test
  • 05e2d11 Remove test for issue 397
  • c94d00a Make calledAfter symetric with calledBefore

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of sinon is breaking the build 🚨

Version 5.0.9 of sinon was just published.

Branch Build failing 🚨
Dependency sinon
Current Version 5.0.8
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

sinon is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push The Travis CI build could not complete due to an error Details
  • ci/circleci Your tests passed on CircleCI! Details
  • continuous-integration/appveyor/branch AppVeyor build succeeded Details

Commits

The new version differs by 5 commits.

  • 86b930c Update docs/changelog.md and set new release id in docs/_config.yml
  • 033aa60 Add release documentation for v5.0.9
  • 3321085 5.0.9
  • 9f321d5 Update History.md and AUTHORS for new release
  • e862196 Upgrade @std/esm to esm.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of tslint is breaking the build 🚨

Version 5.3.0 of tslint just got published.

Branch Build failing 🚨
Dependency tslint
Current Version 5.2.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As tslint is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes v5.3.0

This change may require a change to tslint.json

🎉 Notable features & enhancements

Thanks to our contributors!

  • Andy Hanson
  • Klaus Meinhardt
  • Martin Probst
  • Filipe Silva
  • walkerburgin
  • René Scheibe
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of eslint-plugin-import is breaking the build 🚨

Version 2.13.0 of eslint-plugin-import was just published.

Branch Build failing 🚨
Dependency [eslint-plugin-import](https://github.com/benmosher/eslint-plugin-import)
Current Version 2.12.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

eslint-plugin-import is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ci/circleci Your tests failed on CircleCI Details
  • continuous-integration/travis-ci/push The Travis CI build passed Details
  • continuous-integration/appveyor/branch AppVeyor build succeeded Details

Commits

The new version differs by 7 commits.

  • c34f14f changelog/package bumps
  • 9db789b [Fix] namespace: ensure this rule works in ES2018
  • add69cf [New] Add ESLint 5 support
  • 59fc04e [Tests] on node v10
  • cdb328c [webpack] log a useful error in a module bug arises
  • ebafcbf no-restricted-paths: complete coverage
  • e6f5c13 No relative parent imports rule (#1093)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of mocha is breaking the build 🚨

Version 5.2.0 of mocha was just published.

Branch Build failing 🚨
Dependency mocha
Current Version 5.1.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

mocha is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ci/circleci Your tests passed on CircleCI! Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details
  • continuous-integration/appveyor/branch AppVeyor build succeeded Details

Release Notes v5.2.0

5.2.0 / 2018-05-18

🎉 Enhancements

🐛 Fixes

📖 Documentation

🔩 Other

Commits

The new version differs by 30 commits.

  • 5bd33a0 Release v5.2.0
  • 0a5604f reformat missed files
  • 7c8f551 ensure scripts/*.js gets prettiered
  • d8ea2ba update CHANGELOG.md for v5.2.0 [ci skip]
  • 7203ed7 update all dependencies
  • fb5393b migrate Mocha's tests to Unexpected assertion library (#3343)
  • fae9af2 docs(docs/index.md): Update "mocha.opts" documentation
  • 9d9e6c6 feat(bin/options.js): Add support for comment lines in "mocha.opts"
  • e0306ff fix busted lint-staged config
  • f2be6d4 Annotate when exceptions are caught but ignored; closes #3354 (#3356)
  • 889e681 remove dead code in bin/_mocha
  • 8712b95 fix(ocd): re-order Node.js tests in .travis.yml (descending)
  • 3ab0e7e fix to exit correctly when using bail flag
  • d87b12e add Node.js v10 to build; fix win32 issues (#3350)
  • b392af5 update package-lock.json for npm@6 [ci skip]

There are 30 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of sinon is breaking the build 🚨

Version 4.1.0 of sinon was just published.

Branch Build failing 🚨
Dependency sinon
Current Version 4.0.2
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

sinon is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ci/circleci Your tests passed on CircleCI! Details
  • continuous-integration/travis-ci/push The Travis CI build passed Details
  • codecov/patch Coverage not affected when comparing b00ef06...9302fb8 Details
  • codecov/project 97.13% (-1.18%) compared to b00ef06 Details

Commits

The new version differs by 22 commits.

  • c0a71c6 Update docs/changelog.md and set new release id in docs/_config.yml
  • a2b873a Add release documentation for v4.1.0
  • 0a6a660 4.1.0
  • 3b36972 Update History.md and AUTHORS for new release
  • 201a652 Issue 1598 (Feature Request): Implemented sandbox.createStubInstance, tests, and documentation.
  • d49180d Merge pull request #1603 from mroderick/fix-more-markdown
  • 2d2631c Docs: fix pre commit hook
  • 9fa87e7 Docs: remove trailing quote from heading
  • 46ffad3 Docs: verify documentation using markdownlint
  • aa10bb7 Docs: remove use of element
  • 294ada0 Docs: remove use of
     tag
  • 77e5d31 Docs: reduce unnecessary inline HTML
  • b14a261 Docs: fix invalid syntax of backticks in headers
  • 579e029 Docs: fix trailing punctuation in headers
  • 7b04012 Docs: remove extraneous blank lines

There are 22 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of gulp-tslint is breaking the build 🚨

Version 7.1.0 of gulp-tslint just got published.

Branch Build failing 🚨
Dependency gulp-tslint
Current Version 7.0.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As gulp-tslint is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details

  • continuous-integration/travis-ci/push The Travis CI build failed Details

Commits

The new version differs by 9 commits .

  • 59db005 Release 7.1.0.
  • 7185e11 Merge pull request #107 from okaufmann/master
  • d76dfe1 Issue #106: skip directories while reporting errors
  • c4b2ccb Merge pull request #101 from RomkeVdMeulen/master
  • edc8b12 Add support for TSlint option 'fix'.
  • 6c9cc20 Merge pull request #98 from jucrouzet/patch-1
  • f64935b Clarification on README
  • b7955a4 Merge pull request #94 from wvanderdeijl/master
  • 41acd30 updated example for tslint program

See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of stylelint is breaking the build 🚨

Version 7.8.0 of stylelint just got published.

Branch Build failing 🚨
Dependency stylelint
Current Version 7.7.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As stylelint is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details

  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes 7.8.0
  • Deprecated: 15 rules (#2197, #2285 & #2309).
    • block-no-single-line. Use block-opening-brace-newline-after and block-closing-brace-newline-before rules with the option "always" instead.
    • declaration-block-properties-order. Use the stylelint-order plugin pack instead.
    • rule-nested-empty-line-before and rule-non-nested-empty-line-before. Use the new rule-empty-line-before rule instead.
    • time-no-imperceptible. Use the new time-min-milliseconds rule with 100 as its primary option.
    • It is beyond the scope of stylelint's core package to effectively validate against the CSS spec. Please investigate csstree and css-values for this functionality, and contribute to those projects and to stylelint plugins wrapping them. csstree already has a stylelint plugin, and css-values needs one to be developed. The following rules are deprecated for this reason.
      • media-feature-no-missing-punctuation.
      • selector-no-empty.
    • A plugin is a better package for a rule that wraps a third-party library. The following rules are deprecated for this reason. We encourage users to create and help maintain plugins for these rules.
      • no-browser-hacks
      • no-indistinguishable-colors
      • no-unsupported-browser-features
    • The following rules did not seem useful. If you liked these rules, please create plugins for them.
      • custom-property-no-outside-root
      • root-no-standard-properties
      • selector-root-no-composition.
    • The following rules did not work well.
      • stylelint-disable-reason. Please consider contributing to #2292 for a replacement.
      • declaration-block-no-ignored-properties could not reliably account for replaced elements.
  • Deprecated: 4 options (#2213).
    • "all-nested" option for at-rule-empty-line-before. Use the "inside-block" option instead.
    • "blockless-group" option for at-rule-empty-line-before. Use the "blockless-after-blockless" option instead.
    • "between-comments" option for comment-empty-line-before. Use the "after-comment" option instead.
    • "at-rules-without-declaration-blocks" option for max-nesting-depth. Use the "blockless-at-rules" option instead.
  • Added: time-min-milliseconds rule, to replace time-no-imperceptible (#2289).
  • Added: except: ["after-same-name"] option to at-rule-empty-line-before (#2225).
  • Fixed: configOverrides now work with extends (#2295).
  • Fixed: max-line-length no longer reports incorrect column positions for lines with url() or import (#2287).
  • Fixed: selector-pseudo-class-no-unknown no longer warns for proprietary webkit pseudo-classes (#2264).
  • Fixed: unit-no-unknown accepts fr units (#2308).
Commits

The new version differs by 42 commits .

  • b56306d Prepare 7.8.0
  • 8b2c7fb Update changelog
  • 06943a4 Add rule-empty-line-before rule (#2309)
  • 3c76452 Put back links to deprecated rules (#2313)
  • 6ab2c26 Use HTTPS links where applicable. (#2311)
  • e484170 Prepare CHANGELOG and release planning (#2299)
  • a84596e Update CHANGELOG.md
  • a36c94c Add fr to known units (#2308)
  • 16014e1 Remove tape testRule leftover (#2306)
  • e28566c Use fenced code blocks
  • 2b68f31 Use https://stylelint.io everywhere
  • 3888238 Standardise deprecation notes and warnings (#2300)
  • 830221f Improve documentation of "always-multi-line" in at-rule-name-newline-after (#2304)
  • 09955dd Revert deprecation of stylelint-commands option (#2302)
  • 7aa2282 Deprecate rules (#2197) (#2298)

There are 42 commits in total. See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of eslint is breaking the build 🚨

Version 3.15.0 of eslint just got published.

Branch Build failing 🚨
Dependency eslint
Current Version 3.14.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As eslint is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details

  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes v3.15.0
  • f2a3580 Fix: no-extra-parens incorrect precedence (fixes #7978) (#7999) (alberto)
  • d6b6ba1 Fix: no-var should fix ForStatement.init (#7993) (Toru Nagashima)
  • 99d386d Upgrade: Espree v3.4.0 (#8019) (Kai Cataldo)
  • 42390fd Docs: update README.md for team (#8016) (Toru Nagashima)
  • d7ffd88 Chore: enable template-tag-spacing on ESLint codebase (#8005) (Teddy Katz)
  • f2be7e3 Docs: Fix typo in object-curly-newline.md (#8002) (Danny Andrews)
  • df2351a Docs: Fix misleading section in brace-style documentation (#7996) (Teddy Katz)
  • 5ae6e00 Chore: avoid unnecessary feature detection for Symbol (#7992) (Teddy Katz)
  • 5d57c57 Chore: fix no-else-return lint error (refs #7986) (#7994) (Vitor Balocco)
  • 62fb054 Chore: enable no-else-return on ESLint codebase (#7986) (Teddy Katz)
  • c59a0ba Update: add ignoreRestSiblings option to no-unused-vars (#7968) (Zack Argyle)
  • 5cdfa99 Chore: enable no-unneeded-ternary on ESLint codebase (#7987) (Teddy Katz)
  • fbd7c13 Update: ensure operator-assignment handles exponentiation operators (#7970) (Teddy Katz)
  • c5066ce Update: add "variables" option to no-use-before-define (fixes #7111) (#7948) (Teddy Katz)
  • 09546a4 New: template-tag-spacing rule (fixes #7631) (#7913) (Jonathan Wilsson)
Commits

The new version differs by 17 commits .

  • 8ea98f9 3.15.0
  • 77b5cb7 Build: package.json and changelog update for 3.15.0
  • f2a3580 Fix: no-extra-parens incorrect precedence (fixes #7978) (#7999)
  • d6b6ba1 Fix: no-var should fix ForStatement.init (#7993)
  • 99d386d Upgrade: Espree v3.4.0 (#8019)
  • 42390fd Docs: update README.md for team (#8016)
  • d7ffd88 Chore: enable template-tag-spacing on ESLint codebase (#8005)
  • f2be7e3 Docs: Fix typo in object-curly-newline.md (#8002)
  • df2351a Docs: Fix misleading section in brace-style documentation (#7996)
  • 5ae6e00 Chore: avoid unnecessary feature detection for Symbol (#7992)
  • 5d57c57 Chore: fix no-else-return lint error (refs #7986) (#7994)
  • 62fb054 Chore: enable no-else-return on ESLint codebase (#7986)
  • c59a0ba Update: add ignoreRestSiblings option to no-unused-vars (#7968)
  • 5cdfa99 Chore: enable no-unneeded-ternary on ESLint codebase (#7987)
  • fbd7c13 Update: ensure operator-assignment handles exponentiation operators (#7970)

There are 17 commits in total. See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of junit-report-builder is breaking the build 🚨

Version 1.3.1 of junit-report-builder was just published.

Branch Build failing 🚨
Dependency junit-report-builder
Current Version 1.3.0
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

junit-report-builder is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details
  • continuous-integration/travis-ci/push The Travis CI build is in progress Details
  • ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 9 commits ahead by 9, behind by 5.

  • 2724478 release 1.3.1
  • a9f73af Merge pull request #7 from davidparsson/update-production-dependencies
  • 439ac72 Update dependencies lodash and xmlbuilder
  • c3c8731 Run tests for node.js 8 and 10 as well
  • 2b9fa51 Release 1.3.0
  • 33aa12e Merge pull request #4 from anto-wahanda/add-attachment
  • 23dd29c Update grunt-contrib-watch
  • f5e017a Add package-lock.json
  • 8aea007 Test that quotes are escaped

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of proxyquire is breaking the build 🚨

☝️ Greenkeeper’s updated Terms of Service will come into effect on April 6th, 2018.

Version 2.0.1 of proxyquire was just published.

Branch Build failing 🚨
Dependency proxyquire
Current Version 2.0.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

proxyquire is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details
  • ci/circleci Your tests failed on CircleCI Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Commits

The new version differs by 3 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of sinon is breaking the build 🚨

Version 6.0.1 of sinon was just published.

Branch Build failing 🚨
Dependency [sinon](https://github.com/sinonjs/sinon)
Current Version 6.0.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

sinon is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ci/circleci Your tests failed on CircleCI Details
  • continuous-integration/appveyor/branch AppVeyor build succeeded Details
  • continuous-integration/travis-ci/push The Travis CI build passed Details

Commits

The new version differs by 8 commits.

  • c8901e7 Update docs/changelog.md and set new release id in docs/_config.yml
  • 8f8b2d9 Add release documentation for v6.0.1
  • feee43d 6.0.1
  • fc21226 Update History.md and AUTHORS for new release
  • a3cf98f Add fake behaviors to sandbox (#1815)
  • 8816e1a Use escaped double quotes for compatibility with Windows
  • 559d57d Fix mocha test file pattern to match subdirectories correctly
  • d2983f1 Use migration guide include in guide index (#1838)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of greenkeeper-lockfile is breaking the build 🚨

Version 1.15.1 of greenkeeper-lockfile was just published.

Branch Build failing 🚨
Dependency greenkeeper-lockfile
Current Version 1.15.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

greenkeeper-lockfile is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ci/circleci Your tests passed on CircleCI! Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details
  • continuous-integration/appveyor/branch AppVeyor build succeeded Details

Release Notes v1.15.1

1.15.1 (2018-05-19)

Bug Fixes

Commits

The new version differs by 1 commits.

  • a89874f fix: force push when amending

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of eslint is breaking the build 🚨

Version 4.2.0 of eslint just got published.

Branch Build failing 🚨
Dependency eslint
Current Version 4.1.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As eslint is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details
  • coverage/coveralls First build on greenkeeper/eslint-4.2.0 at 97.892% Details
  • continuous-integration/appveyor/branch AppVeyor build failed Details

Release Notes v4.2.0
  • e0f0101 Update: fix indentation of nested function parameters (fixes #8892) (#8900) (Teddy Katz)
  • 9f95a3e Chore: remove unused helper method from indent (#8901) (Teddy Katz)
  • 11ffe6b Fix: no-regex-spaces rule incorrectly fixes quantified spaces (#8773) (Keri Warr)
  • 975dacf Update: fix indentation of EmptyStatements (fixes #8882) (#8885) (Teddy Katz)
  • 88ed041 Build: Turnoff CI branch build (fixes #8804) (#8873) (Gyandeep Singh)
  • 72f22eb Chore: replace is-my-json-valid with Ajv (#8852) (Gajus Kuizinas)
  • 7c8de92 Docs: Clarified PR guidelines in maintainer guide (#8876) (Kevin Partington)
  • d1fc408 Docs: Update CLA link in Contributing docs (#8883) (Calvin Freitas)
  • 931a9f1 Fix: indent false positive with multi-line await expression (#8837) (薛定谔的猫)
  • 3767cda Update: add no-sync option to allow at root level (fixes #7985) (#8859) (Victor Hom)
  • 1ce553d Docs: Fix wording of minProperties in object-curly-newline (fixes #8874) (#8878) (solmsted)
  • f00854e Fix: --quiet no longer fixes warnings (fixes #8675) (#8858) (Kevin Partington)
  • b678535 Chore: Add collapsible block for config in ISSUE_TEMPLATE (#8872) (Gyandeep Singh)
  • 1f5bfc2 Update: Add always-multiline option to multiline-ternary (fixes #8770) (#8841) (Nathan Woltman)
  • 22116f2 Fix: correct comma-dangle JSON schema (#8864) (Evgeny Poberezkin)
  • 676af9e Update: fix indentation of JSXExpressionContainer contents (fixes #8832) (#8850) (Teddy Katz)
  • 330dd58 Chore: fix title of linter test suite (#8861) (Teddy Katz)
  • 60099ed Chore: enable for-direction rule on ESLint codebase (#8853) (薛定谔的猫)
  • e0d1a84 Chore: upgrade eslint-plugin-eslint-plugin & eslint-plugin-node (#8856) (薛定谔的猫)
  • 0780d86 Chore: remove identical tests (#8851) (Teddy Katz)
  • 5c3ac8e Fix: arrow-parens fixer gets tripped up with trailing comma in args (#8838) (薛定谔的猫)
  • c4f2e29 Build: fix race condition in demo (#8827) (Teddy Katz)
  • c693be5 New: Allow passing a function as fix option (fixes #8039) (#8730) (Ian VanSchooten)
  • 8796d55 Docs: add missing item to 4.0 migration guide table of contents (#8835) (薛定谔的猫)
  • 742998c doc md update: false -> false (#8825) (Erik Vold)
  • ce969f9 Docs: add guidelines for patch release communication (fixes #7277) (#8823) (Teddy Katz)
  • 5c83c99 Docs: Clarify arrow function parens in no-extra-parens (fixes #8741) (#8822) (Kevin Partington)
  • 84d921d Docs: Added note about Node/CJS scoping to no-redeclare (fixes #8814) (#8820) (Kevin Partington)
  • 85c9327 Update: fix parenthesized CallExpression indentation (fixes #8790) (#8802) (Teddy Katz)
  • be8d354 Update: simplify variable declarator indent handling (fixes #8785) (#8801) (Teddy Katz)
  • 9417818 Fix: no-debugger autofixer produced invalid syntax (#8806) (Teddy Katz)
  • 8698a92 New: getter-return rule (fixes #8449) (#8460) (薛定谔的猫)
  • eac06f2 Fix: no-extra-parens false positives for variables called "let" (#8808) (Teddy Katz)
  • 616587f Fix: dot-notation autofix produces syntax errors for object called "let" (#8807) (Teddy Katz)
  • a53ef7e Fix: don't require a third argument in linter.verifyAndFix (fixes #8805) (#8809) (Teddy Katz)
  • 5ad8b70 Docs: add minor formatting improvement to paragraph about parsers (#8816) (Teddy Katz)
Commits

The new version differs by 38 commits.

  • 5ea79dc 4.2.0
  • b19ee3f Build: changelog update for 4.2.0
  • e0f0101 Update: fix indentation of nested function parameters (fixes #8892) (#8900)
  • 9f95a3e Chore: remove unused helper method from indent (#8901)
  • 11ffe6b Fix: no-regex-spaces rule incorrectly fixes quantified spaces (#8773)
  • 975dacf Update: fix indentation of EmptyStatements (fixes #8882) (#8885)
  • 88ed041 Build: Turnoff CI branch build (fixes #8804) (#8873)
  • 72f22eb Chore: replace is-my-json-valid with Ajv (#8852)
  • 7c8de92 Docs: Clarified PR guidelines in maintainer guide (#8876)
  • d1fc408 Docs: Update CLA link in Contributing docs (#8883)
  • 931a9f1 Fix: indent false positive with multi-line await expression (#8837)
  • 3767cda Update: add no-sync option to allow at root level (fixes #7985) (#8859)
  • 1ce553d Docs: Fix wording of minProperties in object-curly-newline (fixes #8874) (#8878)
  • f00854e Fix: --quiet no longer fixes warnings (fixes #8675) (#8858)
  • b678535 Chore: Add collapsible block for config in ISSUE_TEMPLATE (#8872)

There are 38 commits in total.

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of stylelint is breaking the build 🚨

Version 7.11.1 of stylelint just got published.

Branch Build failing 🚨
Dependency stylelint
Current Version 7.11.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As stylelint is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • continuous-integration/travis-ci/push The Travis CI build is in progress Details
  • continuous-integration/appveyor/branch AppVeyor build failed Details

Release Notes 7.11.1
  • Fixed: media-feature-name-*list now accept arrays for their primary options (#2632).
  • Fixed: selector-* now ignore custom property sets (#2634).
  • Fixed: selector-pseudo-class-no-unknown now ignores Less :extend (#2625).
Commits

The new version differs by 10 commits.

  • 3ae1b72 Add an ignorePattern example for URL in comments in max-line-length (#2635)
  • c0b3e17 Prepare 7.11.1
  • 239e749 Add an ignorePattern test for URLs in comments in max-line-length (#2636)
  • d092c46 Create CHANGELOG.md
  • 9baf0d0 Fixed: ignore custom property sets in selector rules. (#2634)
  • f3f4fd2 Create CHANGELOG.md
  • 861a1bd Fixed: media-feature-name-whitelist and media-feature-name-blacklist now accept array as first option. (#2632)
  • 76df61d Create CHANGELOG.md
  • 93fb065 Fixed: ignore less :extend in selector-pseudo-class-no-unknown. (#2625)
  • d229a67 chore(package): update del to version 3.0.0 (#2616)

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of ci-info is breaking the build 🚨

Version 1.1.2 of ci-info was just published.

Branch Build failing 🚨
Dependency ci-info
Current Version 1.1.1
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

ci-info is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details
  • continuous-integration/travis-ci/push The Travis CI build is in progress Details
  • ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 2 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of tslint is breaking the build 🚨

Version 4.4.0 of tslint just got published.

Branch Build failing 🚨
Dependency tslint
Current Version 4.3.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As tslint is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details

  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes v4.4.0
  • [new-rule] arrow-return-shorthand (#1972)
  • [new-rule] no-unbound-method (#2089)
  • [new-rule] no-boolean-literal-compare (#2013)
  • [new-rule] no-unsafe-any (#2047)
  • [new-rule] no-unnecessary-qualifier (#2008)
  • [new-rule] no-unnecessary-initializer (#2106)
  • [new-rule] await-promise (#2102)
  • [new-rule] no-floating-promises (#1632)
  • [new-rule] strict-type-predicates (#2046)
  • [new-rule] no-misused-new (#1963)
  • [new-rule] prefer-method-signature (#2028)
  • [new-rule] prefer-function-over-method (#2037)
  • [new-rule-option] allow-fast-null-checks added to no-unused-expression (#1638)
  • [new-rule-option] comment-format-rule adds ignore-words and ignore-pattern options (#1757)
  • [new-rule-option] whitespace adds check-preblock option (#2002)
  • [new-rule-option] strict-boolean-expressions adds allow-null-union, allow-undefined-union, allow-string, and allow-number and (#2033)
  • [new-fixer] align (#2097)
  • [new-fixer] no-trailing-whitespace (#2060)
  • [bugfix] no-magic-numbers false positive on default parameter values (#2004)
  • [bugfix] no-empty-interface allow empty interface with 2 or more parents (#2070)
  • [bugfix] no-trailing-whitespace fixed for comments and EOF (#2060)
  • [bugfix] no-empty no longer fails for private or protected constructor (#1976)
  • [bugfix] tslint:disable/tslint-enable now handles multiple rules and fixes what code is enabled/disabled (#2061)
  • [bugfix] no-inferrable-types now validates property declarations (#2081)
  • [bugfix] unified-signatures false positive (#2016)
  • [bugfix] whitespace finds all whitespace errors in JsxExpressions and TemplateExpressions (#2036)
  • [bugfix] comment-format no more false positives in JsxText (#2036)
  • [enhancement] --test option now accepts glob (#2079)

Thanks to our contributors!

  • Alexander Rusakov
  • Andrii Dieiev
  • @andy-ms
  • Andy Hanson
  • Josh Goldberg
  • Kei Son
  • Klaus Meinhardt
  • Krati Ahuja
  • Martin Probst
  • Mohsen Azimi
  • Romke van der Meulen
  • cameron-mcateer
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

feature_request(unicode): disable CROSS MARK symbol from output #129

1. Summary

It would be nice, if CROSS MARK symbol will not add to console output.

2. Argumentation

Different terminal behavior.

Compare line of output for Cygwin and ConEmu:

Cygwin:

01:016 ❌ invalid newline: crlf, expected: lf (EditorConfig end_of_line https://goo.gl/te3t0s)

ConEmu:

01:016 ❌️ invalid newline: crlf, expected: lf (EditorConfig end_of_line https://goo.gl/te3t0s)

Cygwin vs ConEmu

In ConEmu output I get VARIATION SELECTOR-16 symbol in each line.

It may create some problems in debugging process, examples:

  1. User can have a different file size, if run same command in different operating systems/terminals. User may not understand the reasons.
  2. File comparison tools show differences for each line.

3. Environment

  • Windows 10 Enterprise LTSB 64-bit EN,
  • Cygwin 2.10.0,
  • ConEmu 171205 [64],
  • eclint 2.6.0.

4. Example

For one of my big projects:

ConEmu:

eclint check > SashaEClintWindows.txt 2>&1

SashaEClintWindows.txt — 1515 KB. Lines with VARIATION SELECTOR-16.

Cygwin:

eclint check &> SashaEClintCygwin.txt

SashaEClintCygwin.txt — 1473 KB. Lines without VARIATION SELECTOR-16.

I get same output, but different file size because of VARIATION SELECTOR-16 symbol.

Thanks.

An in-range update of tslint is breaking the build 🚨

Version 5.7.0 of tslint just got published.

Branch Build failing 🚨
Dependency tslint
Current Version 5.6.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As tslint is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details
  • coverage/coveralls First build on greenkeeper/tslint-5.7.0 at 98.848% Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes v5.7.0

🎉 New rules, options, and fixers

🛠 Bugfixes & enhancements

  • [api] AbstractRule#applyWithFunction allows additional parameter that is passed through to walkFn (#3140)
  • [api] AbstractRule#applyWithFunction has better type checking for its type parameter (#2660)
  • [bugfix] member-access autofix now correcly inserts public keyword after decorators (#3162)
  • [bugfix] prefer-const correctly handle catch without binding parameter introduced in [email protected] (#3151)
  • [bugfix] no-invalid-template-strings allows backslash-prefixed template expressions (#3116)
  • [bugfix] deprecation no longer shows errors on imports and exports (#3141)
  • [bugfix] deprecation: fix false positive when calling a function or method where another overload is deprecated (#2883)
  • [bugfix] whitespace: fixed "check-separator" for trivial for cases. (#3132)
  • [bugfix] prefer-object-spread prevent spreading this as it is not allowed by the compiler (#3126)
  • [bugfix] msbuild formatter uses backslashes in paths on Windows (#3145)
  • [bugfix] no-namespace ignores global augmentation (#3161)
  • [enhancement] remove superfluous empty lines on tslint output. (#3121)
  • [enhancement] no-submodule-imports allows whitelisting of submodules like @angular/core/testing (#3129)
  • [enhancement] custom lint rules will be resolved using node's path resolution to allow for loaders like ts-node (#3108)
  • [enhancement] quotemark no longer requires "single" or "double" to be the first option. The rule defaults to "double" if none is specified. (#3114)
  • [enhancement] no-unused-variable autofix removes trailing comments of imports (#3156)
  • [enhancement] no-unnecessary-type-assertion allows certain necessary assertions to prevent type widening (#3120)

Thanks to our contributors!

  • Paul Gschwendtner
  • Andy Hanson
  • ksvitkovsky
  • Santi Albo
  • aervin
  • Junle Li
  • Joscha Feth
  • WiseBird
  • Caleb Eggensperger
  • WGroenestein
  • Bowen Ni
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of gulp-xo is breaking the build 🚨

☝️ Greenkeeper’s updated Terms of Service will come into effect on April 6th, 2018.

Version 0.17.1 of gulp-xo was just published.

Branch Build failing 🚨
Dependency gulp-xo
Current Version 0.17.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

gulp-xo is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ci/circleci Your tests passed on CircleCI! Details
  • continuous-integration/travis-ci/push The Travis CI build passed Details
  • continuous-integration/appveyor/branch AppVeyor build failed Details
  • continuous-integration/travis-ci/pr The Travis CI build passed Details
  • continuous-integration/appveyor/pr AppVeyor build succeeded Details

Commits

The new version differs by 2 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of sinon is breaking the build 🚨

Version 4.1.6 of sinon was just published.

Branch Build failing 🚨
Dependency sinon
Current Version 4.1.5
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

sinon is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ci/circleci Your tests passed on CircleCI! Details
  • continuous-integration/appveyor/branch AppVeyor build succeeded Details
  • continuous-integration/travis-ci/push The Travis CI build could not complete due to an error Details

Commits

The new version differs by 10 commits.

  • 68c37ed Update docs/changelog.md and set new release id in docs/_config.yml
  • cd8ae51 Add release documentation for v4.1.6
  • 29e80be 4.1.6
  • a5c59a5 Update History.md and AUTHORS for new release
  • 0ae60b6 Merge pull request #1653 from mroderick/upgrade-dependencies
  • dcd4191 Upgrade browserify to latest
  • a316f02 Upgrade markdownlint-cli to latest
  • 78ebdb3 Upgrade lint-staged to latest
  • fcf967b Upgrade dependency supports-color
  • 7c3cb4f Enable StaleBot with default configuration (#1649)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of eslint is breaking the build 🚨

Version 3.19.0 of eslint just got published.

Branch Build failing 🚨
Dependency eslint
Current Version 3.18.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As eslint is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/travis-ci/push The Travis CI build passed Details

  • coverage/coveralls First build on greenkeeper/eslint-3.19.0 at 78.14% Details

  • continuous-integration/appveyor/branch AppVeyor build failed Details

Release Notes v3.19.0
  • e09132f Fix: no-extra-parens false positive with exports and object literals (#8359) (Teddy Katz)
  • 91baed4 Update: allow custom messages in no-restricted-syntax (fixes #8298) (#8357) (Vitor Balocco)
  • 35c93e6 Fix: prevent space-before-function-paren from checking type annotations (#8349) (Teddy Katz)
  • 3342e9f Fix: don't modify operator precedence in operator-assignment autofixer (#8358) (Teddy Katz)
  • f88375f Docs: clarify that no-unsafe-negation is in eslint:recommended (#8371) (Teddy Katz)
  • 02f0d27 Docs: Add soda0289 to Development Team (#8367) (Kai Cataldo)
  • 155424c Fix: ignore empty path in patterns (fixes #8362) (#8364) (alberto)
  • 27616a8 Fix: prefer-const false positive with object spread (fixes #8187) (#8297) (Vitor Balocco)
  • 8569a90 Docs: add note about git's linebreak handling to linebreak-style docs (#8361) (Teddy Katz)
  • 5878593 Chore: fix invalid syntax in no-param-reassign test (#8360) (Teddy Katz)
  • 1b1046b Fix: don't classify plugins that throw errors as "missing" (fixes #6874) (#8323) (Teddy Katz)
  • 29f4ba5 Fix: no-useless-computed-key invalid autofix for getters and setters (#8335) (Teddy Katz)
  • 0541eaf Fix: no-implicit-coercion invalid autofix with consecutive identifiers (#8340) (Teddy Katz)
  • 41b9786 Fix: no-extra-parens false positive with objects following arrows (#8339) (Teddy Katz)
  • 3146167 Fix: eslint.verify should not mutate config argument (fixes #8329) (#8334) (alberto)
  • 927de90 Fix: dot-notation autofix produces invalid syntax for integer properties (#8332) (Teddy Katz)
  • a9d1bea Fix: comma-style autofix produces errors on parenthesized elements (#8331) (Teddy Katz)
  • d52173f Fix: don't generate invalid options in config-rule (#8326) (Teddy Katz)
  • 6eda3b5 Fix: no-extra-parens invalid autofix in for-of statements (#8337) (Teddy Katz)
  • 6c819d8 Fix: dot-notation autofix produces errors on parenthesized computed keys (#8330) (Teddy Katz)
  • 2d883d7 Fix: object-shorthand autofix produces errors on parenthesized functions (#8328) (Teddy Katz)
  • cd9b774 Fix: quotes false positive with backtick option in method names (#8327) (Teddy Katz)
  • d064ba2 Fix: no-else-return false positive for ifs in single-statement position (#8338) (Teddy Katz)
  • 6a718ba Chore: enable max-statements-per-line on ESLint codebase (#8321) (Teddy Katz)
  • 614b62e Chore: update sinon calls to deprecated API. (#8310) (alberto)
  • 0491572 Chore: use precalculated counts in codeframe formatter (#8296) (Vitor Balocco)
  • 8733e6a Chore: Fix incorrect error location properties in tests (#8307) (alberto)
  • c4ffb49 Chore: Fix typos in test option assertions (#8305) (Teddy Katz)
  • 79a97cb Upgrade: devDependencies (#8303) (alberto)
  • e4da200 Upgrade: Mocha to 3.2.0 (#8299) (Ilya Volodin)
  • 2f144ca Fix: operator-assignment autofix errors with parentheses (fixes #8293) (#8294) (Teddy Katz)
  • 7521cd5 Chore: update token logic in rules to use ast-utils (#8288) (Teddy Katz)
  • 9b509ce Chore: refactor space-before-function-paren rule (#8284) (Teddy Katz)
  • ddc6350 Fix: no-param-reassign false positive on destructuring (fixes #8279) (#8281) (Teddy Katz)
  • f8176b3 Chore: improve test coverage for node-event-generator (#8287) (Teddy Katz)
  • 602e9c2 Docs: fix incorrect selector examples (#8278) (Teddy Katz)
Commits

The new version differs by 38 commits .

  • 421aab4 3.19.0
  • 26a4dd5 Build: changelog update for 3.19.0
  • e09132f Fix: no-extra-parens false positive with exports and object literals (#8359)
  • 91baed4 Update: allow custom messages in no-restricted-syntax (fixes #8298) (#8357)
  • 35c93e6 Fix: prevent space-before-function-paren from checking type annotations (#8349)
  • 3342e9f Fix: don't modify operator precedence in operator-assignment autofixer (#8358)
  • f88375f Docs: clarify that no-unsafe-negation is in eslint:recommended (#8371)
  • 02f0d27 Docs: Add soda0289 to Development Team (#8367)
  • 155424c Fix: ignore empty path in patterns (fixes #8362) (#8364)
  • 27616a8 Fix: prefer-const false positive with object spread (fixes #8187) (#8297)
  • 8569a90 Docs: add note about git's linebreak handling to linebreak-style docs (#8361)
  • 5878593 Chore: fix invalid syntax in no-param-reassign test (#8360)
  • 1b1046b Fix: don't classify plugins that throw errors as "missing" (fixes #6874) (#8323)
  • 29f4ba5 Fix: no-useless-computed-key invalid autofix for getters and setters (#8335)
  • 0541eaf Fix: no-implicit-coercion invalid autofix with consecutive identifiers (#8340)

There are 38 commits in total. See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of postcss is breaking the build 🚨

Version 5.2.14 of postcss just got published.

Branch Build failing 🚨
Dependency postcss
Current Version 5.2.13
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As postcss is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details

  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes 5.2.14
Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of eslint is breaking the build 🚨

Version 4.12.0 of eslint was just published.

Branch Build failing 🚨
Dependency eslint
Current Version 4.11.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

eslint is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ci/circleci Your tests passed on CircleCI! Details
  • continuous-integration/travis-ci/push The Travis CI build passed Details
  • continuous-integration/appveyor/branch AppVeyor build succeeded Details
  • codecov/project 99.18% (-0.17%) compared to a4cdd41 Details
  • codecov/patch Coverage not affected when comparing a4cdd41...30ad734 Details

Release Notes v4.12.0
  • 76dab18 Upgrade: doctrine@^2.0.2 (#9656) (Kevin Partington)
  • 28c9c8e New: add a Linter#defineParser function (#9321) (Ives van Hoorne)
  • 5619910 Update: Add autofix for sort-vars (#9496) (Trevin Hofmann)
  • 71eedbf Update: add beforeStatementContinuationChars to semi (fixes #9521) (#9594) (Toru Nagashima)
  • 4118f14 New: Adds implicit-arrow-linebreak rule (refs #9510) (#9629) (Sharmila Jesupaul)
  • 208fb0f Fix: Use XML 1.1 on XML formatters (fixes #9607) (#9608) (Daniel Reigada)
  • 6e04f14 Upgrade: globals to 11.0.1 (fixes #9614) (#9632) (Toru Nagashima)
  • e13d439 Fix: space-in-parens crash (#9655) (Toru Nagashima)
  • 92171cc Docs: Updating migration guide for single-line disable (#9385) (Justin Helmer)
  • f39ffe7 Docs: remove extra punctuation from readme (#9640) (Teddy Katz)
  • a015234 Fix: prefer-destructuring false positive on "super" (fixes #9625) (#9626) (Kei Ito)
  • 0cf081e Update: add importNames option to no-restricted-imports (#9506) (Benjamin R Gibson)
  • 332c214 Docs: Add @platinumazure to TSC (#9618) (Ilya Volodin)
Commits

The new version differs by 15 commits.

  • f4a65c6 4.12.0
  • 1cd1627 Build: changelog update for 4.12.0
  • 76dab18 Upgrade: doctrine@^2.0.2 (#9656)
  • 28c9c8e New: add a Linter#defineParser function (#9321)
  • 5619910 Update: Add autofix for sort-vars (#9496)
  • 71eedbf Update: add beforeStatementContinuationChars to semi (fixes #9521) (#9594)
  • 4118f14 New: Adds implicit-arrow-linebreak rule (refs #9510) (#9629)
  • 208fb0f Fix: Use XML 1.1 on XML formatters (fixes #9607) (#9608)
  • 6e04f14 Upgrade: globals to 11.0.1 (fixes #9614) (#9632)
  • e13d439 Fix: space-in-parens crash (#9655)
  • 92171cc Docs: Updating migration guide for single-line disable (#9385)
  • f39ffe7 Docs: remove extra punctuation from readme (#9640)
  • a015234 Fix: prefer-destructuring false positive on "super" (fixes #9625) (#9626)
  • 0cf081e Update: add importNames option to no-restricted-imports (#9506)
  • 332c214 Docs: Add @platinumazure to TSC (#9618)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of gulp-html-postcss is breaking the build 🚨

Version 7.1.1 of gulp-html-postcss was just published.

Branch Build failing 🚨
Dependency gulp-html-postcss
Current Version 7.1.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

gulp-html-postcss is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details
  • continuous-integration/travis-ci/push The Travis CI build is in progress Details
  • ci/circleci Your tests failed on CircleCI Details

Release Notes v7.1.1
  • update deps. (#32)
Commits

The new version differs by 2 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of eslint-plugin-import is breaking the build 🚨

Version 2.12.0 of eslint-plugin-import was just published.

Branch Build failing 🚨
Dependency eslint-plugin-import
Current Version 2.11.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

eslint-plugin-import is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • ci/circleci Your tests passed on CircleCI! Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Commits

The new version differs by 33 commits.

  • 8f668c7 changelog/package bumps
  • cd9d249 exclude tests from coverage + bump TS parser (#1095)
  • f0d0c4f webpack resolver: cache instance(s) of resolve function (#1091)
  • 8c9c3b8 Merge pull request #1085 from benmosher/packageDir-array
  • 5111c79 revert has removal per @ljharb's note
  • 412ee2e [Refactor] use "has" instead of ".hasOwnProperty"
  • e2fdc5f Fix typo: 'runtime'
  • d8ca5e2 fix typo
  • 04d1c29 Merge branch 'master' into packageDir-array
  • 72bb2cb merge import/paths setting into existing packageDir option
  • 4e37dbf changelog links
  • 2e41a70 Merge pull request #1081 from benmosher/release
  • 2e0ed83 Merge branch 'master' into release
  • ec87b64 Ignore type imports for named rule. (#1057)
  • d5d8b35 memo-parser cautionary note

There are 33 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of stylelint is breaking the build 🚨

Version 7.9.0 of stylelint just got published.

Branch Build failing 🚨
Dependency stylelint
Current Version 7.8.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As stylelint is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪


Status Details
  • continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details

  • continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes 7.9.0
  • Added: ignoreFontFamilyName option to font-family-no-duplicate (#2314).
  • Added: ignorePattern option to max-line-length (#2333).
  • Fixed: update version of lodash dependency to match feature usage, fixing a conflict with Modernizr (#2353).
  • Fixed: color-hex-case false positives for id references in url functions (#2338).
  • Fixed: max-line-length now reports correct column for SCSS comments (#2340).
  • Fixed: selector-class-pattern false positive in SCSS when combining interpolated and nested selectors (#2344).
  • Fixed: selector-type-case false positive for placeholder selectors (#2360).
Commits

The new version differs by 28 commits .

  • e3ad701 Prepare 7.9.0
  • 13e5e16 Add a test for a parent selector in no-duplicate-selectors (#2364)
  • 55f297d Update CHANGELOG.md
  • 50ed9cd Add ignorePattern option to max-line-length (#2333)
  • f6d82db no-browser-hacks: link to external plugin (#2365)
  • 5d90d03 Update CHANGELOG.md
  • 7fe6e1b Fix placeholder selector case (#2360)
  • 9578c48 Always exclude ignored globs from globby search. (#2355)
  • a22ffd0 Update CHANGELOG.md
  • ebdec16 Update lodash (#2353)
  • 4ad8fbd Update CHANGELOG.md
  • 74d9d05 Add ignoreFontFamilyName option to font-family-no-duplicate (#2314)
  • e0a9876 Tests: added tests for nested selectors in selector-id-pattern rule. (#2345)
  • ddca975 Fix brace position (#2347)
  • 623b2bc Update CHANGELOG.md

There are 28 commits in total. See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of sinon is breaking the build 🚨

Version 2.3.6 of sinon just got published.

Branch Build failing 🚨
Dependency sinon
Current Version 2.3.5
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As sinon is “only” a devDependency of this project it might not break production or downstream projects, but “only” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this 💪

Status Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details
  • continuous-integration/appveyor/branch AppVeyor build succeeded Details

Commits

The new version differs by 30 commits.

  • 496f6b0 Update docs/changelog.md and set new release id in docs/_config.yml
  • 60a3284 Add release documentation for v2.3.6
  • 98119bf 2.3.6
  • 4f07053 Update Changelog.txt and AUTHORS for new release
  • 1fc4d59 Experiment over
  • 13e11c8 Experiment: Object.defineProperty(winodw, 'innerHeight'), Safari 10 - part 3
  • 76dd323 Experiment: Object.defineProperty(winodw, 'innerHeight'), Safari 10 - part 2
  • 83e84a9 Experiment: Object.defineProperty(winodw, 'innerHeight'), Safari 10
  • 6adba15 Merge pull request #1473 from fearphage/eslint-yaml
  • e1d188c fixed capitalization
  • d22eda3 Merge pull request #1313 from takasmiley/issues/#1274
  • 1661a0f Add test code of spy.matchingFakes
  • cf3a34e Move #1274 test code to respective test files
  • 833ff2c Replace for loop with Array.prototype.forEach
  • e72fee4 Update matchingFakes, always returns array

There are 30 commits in total.

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of gulp-htmlhint is breaking the build 🚨

☝️ Greenkeeper’s updated Terms of Service will come into effect on April 6th, 2018.

Version 2.1.1 of gulp-htmlhint was just published.

Branch Build failing 🚨
Dependency gulp-htmlhint
Current Version 2.1.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

gulp-htmlhint is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push The Travis CI build is in progress Details
  • continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details
  • ci/circleci Your tests failed on CircleCI Details

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of vinyl-fs is breaking the build 🚨

Version 3.0.1 of vinyl-fs was just published.

Branch Build failing 🚨
Dependency vinyl-fs
Current Version 3.0.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

vinyl-fs is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details
  • continuous-integration/travis-ci/push The Travis CI build is in progress Details
  • ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 4 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of eslint-plugin-standard is breaking the build 🚨

Version 3.1.0 of eslint-plugin-standard was just published.

Branch Build failing 🚨
Dependency eslint-plugin-standard
Current Version 3.0.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

eslint-plugin-standard is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details
  • ci/circleci Your tests passed on CircleCI! Details
  • continuous-integration/travis-ci/push The Travis CI build failed Details

Commits

The new version differs by 12 commits.

  • 0174785 3.1.0
  • 6e1aaa6 add npmignore
  • 8be2d27 remove unused .eslintrc
  • e51d5fe remove unmaintained CHANGELOG
  • 6184444 mocha@5
  • 7e6b194 eslint@4
  • 586f36a Merge pull request #26 from delaguilaluis/update-tests
  • 64f91a5 update tests for no-callback-literal
  • f0bc288 Merge pull request #25 from delaguilaluis/allow-undefined-in-errbacks
  • 7ce136a allow undefined in the first position of callbacks
  • a2f6742 Merge pull request #24 from Arcanemagus/rules-docs-url
  • 8072664 Add URL to rule documentation to the metadata

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

An in-range update of jsdom is breaking the build 🚨

☝️ Greenkeeper’s updated Terms of Service will come into effect on April 6th, 2018.

Version 11.7.0 of jsdom was just published.

Branch Build failing 🚨
Dependency jsdom
Current Version 11.6.2
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

jsdom is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details
  • continuous-integration/travis-ci/push The Travis CI build is in progress Details
  • ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 15 commits.

  • 1e5bbd2 Version 11.7.0
  • 8767d9f Note that FileAPI/historical.https.html needs async/await
  • 7f41ae5 Return boolean from DOMTokenList.replace()
  • 8ad6b17 Convert several of XHR open()'s arguments to strings
  • 5e86716 Implement FileReader.readAsBinaryString()
  • d80648f Set abort event isTrusted to true
  • c91440a Update web platform tests
  • a38c181 Cross-reference external script loading from script execution docs
  • 70ec93b Add README entry about jsdom-devtools-formatter
  • c520198 Implement requestAnimationFrame using performance.now
  • dc672a2 Fix removing an 's src="" attribute
  • d563965 Use whatwg-mimetype and data-urls packages
  • 830a6fd Fix event handlers to be own properties of each Window
  • a0b7f8a Remove no-longer-used field from HTMLStyleElementImpl
  • 475a7cd Omit *.webidl from the published package

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.