Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
markdownlint-cli2-formatter-junit
Advanced tools
An output formatter for markdownlint-cli2 that writes results to a file in JUnit XML format
An output formatter for
markdownlint-cli2
that writes results to a file in JUnit XML format
npm install markdownlint-cli2-formatter-junit --save-dev
For the default output file name of "markdownlint-cli2-junit.xml"
, use
the following .markdownlint-cli2.jsonc
:
{
"outputFormatters": [
[ "markdownlint-cli2-formatter-junit" ]
]
}
To customize the output file name, use the following .markdownlint-cli2.jsonc
:
{
"outputFormatters": [
[ "markdownlint-cli2-formatter-junit", { "name": "custom-name.xml" } ]
]
}
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite name="markdownlint-cli2-formatter-junit" time="0" tests="5" failures="5" errors="0" skipped="0">
<testcase classname="viewme.md" name="MD009/no-trailing-spaces" time="0">
<failure message="Trailing spaces">
<![CDATA[Line 3, Column 10, Expected: 0 or 2; Actual: 1]]>
</failure>
</testcase>
<testcase classname="viewme.md" name="MD012/no-multiple-blanks" time="0">
<failure message="Multiple consecutive blank lines">
<![CDATA[Line 5, Expected: 1; Actual: 2]]>
</failure>
</testcase>
<testcase classname="viewme.md" name="MD025/single-title/single-h1" time="0">
<failure message="Multiple top-level headings in the same document">
<![CDATA[Line 6, Context: "# Description"]]>
</failure>
</testcase>
<testcase classname="viewme.md" name="MD019/no-multiple-space-atx" time="0">
<failure message="Multiple spaces after hash on atx style heading">
<![CDATA[Line 12, Column 1, Context: "## Summary"]]>
</failure>
</testcase>
<testcase classname="viewme.md" name="MD047/single-trailing-newline" time="0">
<failure message="Files should end with a single newline character">
<![CDATA[Line 14, Column 14]]>
</failure>
</testcase>
</testsuite>
</testsuites>
0.0.6
FAQs
An output formatter for markdownlint-cli2 that writes results to a file in JUnit XML format
The npm package markdownlint-cli2-formatter-junit receives a total of 8,875 weekly downloads. As such, markdownlint-cli2-formatter-junit popularity was classified as popular.
We found that markdownlint-cli2-formatter-junit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.