New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.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.22.0-dev.20190816 to 0.22.0-dev.20191009

2

package.json
{
"name": "@fimbul/wotan",
"version": "0.22.0-dev.20190816",
"version": "0.22.0-dev.20191009",
"description": "Pluggable TypeScript and JavaScript linter",

@@ -5,0 +5,0 @@ "bin": "bin/main.js",

@@ -103,6 +103,8 @@ "use strict";

log('Linting file %s', sourceFile.fileName);
if (programFactory !== undefined && /\.jsx?/.test(sourceFile.fileName)) {
if (programFactory !== undefined) {
const directive = tsutils_1.getCheckJsDirective(sourceFile.text);
if (directive === undefined ? !tsutils_1.isCompilerOptionEnabled(programFactory.getCompilerOptions(), 'checkJs') : !directive.enabled) {
log('Not using type information for this unchecked JS file');
if (directive !== undefined
? !directive.enabled
: /\.jsx?/.test(sourceFile.fileName) && !tsutils_1.isCompilerOptionEnabled(programFactory.getCompilerOptions(), 'checkJs')) {
log('Not using type information for this unchecked file');
programFactory = undefined;

@@ -109,0 +111,0 @@ suppressMissingTypeInfoWarning = true;

@@ -5,3 +5,2 @@ "use strict";

const tslib_1 = require("tslib");
"use strict";
const ymir_1 = require("@fimbul/ymir");

@@ -8,0 +7,0 @@ const fs = require("fs");

Sorry, the diff of this file is not supported yet

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