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

danger-plugin-lint-report

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

danger-plugin-lint-report - npm Package Compare versions

Comparing version 0.1.1 to 1.0.0

12

dist/index.js

@@ -43,13 +43,15 @@ "use strict";

function sendViolationBySeverity(msg, fileName, line, severity) {
switch (severity) {
case "Information":
switch (severity.toLowerCase()) {
case "information":
case "info":
message(msg, fileName, line);
break;
case "Warning":
case "warning":
case "warn":
warn(msg, fileName, line);
break;
case "Error":
case "error":
fail(msg, fileName, line);
break;
case "Fatal":
case "fatal":
fail(msg, fileName, line);

@@ -56,0 +58,0 @@ break;

@@ -20,3 +20,3 @@ {

],
"version": "0.1.1",
"version": "1.0.0",
"main": "dist/index.js",

@@ -23,0 +23,0 @@ "types": "types/index.d.ts",

@@ -48,2 +48,3 @@ # danger-plugin-lint-report

reportSeverity: true,
requireLineModification: true,
}))

@@ -50,0 +51,0 @@ ```

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