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

@rushstack/eslint-plugin

Package Overview
Dependencies
Maintainers
3
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rushstack/eslint-plugin - npm Package Compare versions

Comparing version 0.2.0 to 0.3.0

12

CHANGELOG.json

@@ -5,2 +5,14 @@ {

{
"version": "0.3.0",
"tag": "@rushstack/eslint-plugin_v0.3.0",
"date": "Fri, 17 Jan 2020 01:08:23 GMT",
"comments": {
"minor": [
{
"comment": "Allow null in == and != conditionals for no-null eslint rule"
}
]
}
},
{
"version": "0.2.0",

@@ -7,0 +19,0 @@ "tag": "@rushstack/eslint-plugin_v0.2.0",

9

CHANGELOG.md
# Change Log - @rushstack/eslint-plugin
This log was last generated on Thu, 09 Jan 2020 06:44:12 GMT and should not be manually modified.
This log was last generated on Fri, 17 Jan 2020 01:08:23 GMT and should not be manually modified.
## 0.3.0
Fri, 17 Jan 2020 01:08:23 GMT
### Minor changes
- Allow null in == and != conditionals for no-null eslint rule
## 0.2.0

@@ -6,0 +13,0 @@ Thu, 09 Jan 2020 06:44:12 GMT

2

lib/no-null.js

@@ -28,3 +28,3 @@ "use strict";

const operator = node.parent.operator;
isComparison = operator === '!==' || operator === '===';
isComparison = operator === '!==' || operator === '===' || operator === '!=' || operator === '==';
}

@@ -31,0 +31,0 @@ if (!isComparison) {

{
"name": "@rushstack/eslint-plugin",
"version": "0.2.0",
"version": "0.3.0",
"description": "An ESLint plugin providing supplementary rules for use with the @rushstack/eslint-config package",

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

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