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

markdownlint-cli2-formatter-junit

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

markdownlint-cli2-formatter-junit - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

8

markdownlint-cli2-formatter-junit.js

@@ -5,4 +5,4 @@ // @ts-check

const fs = require("fs").promises;
const path = require("path");
const fs = require("node:fs").promises;
const path = require("node:path");
const junitReportBuilder = require("junit-report-builder");

@@ -16,6 +16,7 @@

const builder = junitReportBuilder.newBuilder();
const outputFormatterName = path.basename(__filename).replace(/\.js$/u, "");
const suite =
builder.
testSuite().
name(path.basename(__filename).replace(/\.js$/u, "")).
name(outputFormatterName).
time(0);

@@ -43,2 +44,3 @@ for (const errorInfo of results) {

testCase().
name(outputFormatterName).
time(0);

@@ -45,0 +47,0 @@ }

{
"name": "markdownlint-cli2-formatter-junit",
"version": "0.0.5",
"version": "0.0.6",
"description": "An output formatter for markdownlint-cli2 that writes results to a file in JUnit XML format",

@@ -5,0 +5,0 @@ "author": {

@@ -11,3 +11,3 @@ # markdownlint-cli2-formatter-junit

```shell
```bash
npm install markdownlint-cli2-formatter-junit --save-dev

@@ -14,0 +14,0 @@ ```

Sorry, the diff of this file is not supported yet

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