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

@fimbul/wotan

Package Overview
Dependencies
Maintainers
2
Versions
180
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fimbul/wotan - npm Package Compare versions

Comparing version 0.20.0 to 0.21.0-dev.20190318

6

package.json
{
"name": "@fimbul/wotan",
"version": "0.20.0",
"version": "0.21.0-dev.20190318",
"description": "Pluggable TypeScript and JavaScript linter",

@@ -43,4 +43,4 @@ "bin": "bin/main.js",

"dependencies": {
"@fimbul/mimir": "^0.20.0",
"@fimbul/ymir": "^0.18.0",
"@fimbul/mimir": "0.21.0-dev.20190318",
"@fimbul/ymir": "0.21.0-dev.20190318",
"bind-decorator": "^1.0.11",

@@ -47,0 +47,0 @@ "chalk": "^2.3.0",

@@ -113,5 +113,13 @@ "use strict";

}
if (ctor.supports !== undefined && !ctor.supports(sourceFile, { program, options, settings: config.settings })) {
log('Rule %s does not support this file', ruleName);
continue;
if (ctor.supports !== undefined) {
const supports = ctor.supports(sourceFile, { program, options, settings: config.settings });
if (supports !== true) {
if (!supports) {
log(`Rule %s does not support this file`, ruleName);
}
else {
log(`Rule %s does not support this file: %s`, ruleName, supports);
}
continue;
}
}

@@ -118,0 +126,0 @@ rules.push({ ruleName, options, severity, ctor });

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