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

eslint-bamboo-formatter

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-bamboo-formatter

A reporter for eslint which produces a report compatible with Atlassian Bamboo Mocha Test Parser.

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4.4K
decreased by-17.41%
Maintainers
1
Weekly downloads
 
Created
Source

eslint-bamboo-formatter

view on npm npm module downloads per month Dependency status

A reporter for eslint which produces a report compatible with Atlassian Bamboo Mocha Test Parser.

Installation

npm install eslint-bamboo-formatter

Usage

With ESLint CLI:

eslint file.js -f node_modules/eslint-bamboo-formatter/reporter.js

With Gulp ESLint:

var eslint   = require('gulp-eslint');
var reporter = require('eslint-bamboo-formatter');

gulp.src(['js/**/*.js'])
  .pipe(eslint())
  .pipe(eslint.format(reporter));

Output

By default, the reporter writes to eslint.json. The file name can be changed by setting the ESLINT_FILE environment variable. Warnings are not reported by default. If you want to report warnings as errors, set the environment variable ESLINT_WARNING_AS_ERROR.

License

MIT

Keywords

FAQs

Package last updated on 12 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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