eslint-plugin-moka
Advanced tools
Comparing version
@@ -5,2 +5,6 @@ Changelog | ||
## 0.0.6 | ||
- Fix a bug that "lingui-mark" can not resolve not-equal operator correctly.([#5](https://github.com/southerncross/eslint-plugin-moka/pull/5)) | ||
## 0.0.5 | ||
@@ -7,0 +11,0 @@ |
@@ -98,3 +98,3 @@ module.exports = { | ||
return node.operator === '===' || node.operator === '=='; | ||
return node.operator === '===' || node.operator === '==' || node.operator === '!==' || node.operator === '!='; | ||
}; | ||
@@ -101,0 +101,0 @@ |
{ | ||
"name": "eslint-plugin-moka", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "Eslint Plugin of Moka", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -74,2 +74,5 @@ 'use strict'; | ||
}, | ||
{ | ||
code: "if (status !== '你好') { success = true; }", | ||
}, | ||
], | ||
@@ -76,0 +79,0 @@ |
23415
1.21%703
0.43%