@rushstack/eslint-plugin
Advanced tools
Comparing version 0.2.0 to 0.3.0
@@ -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", |
# 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 |
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
25671
196