Browse Source

v1.0.3: let/const usage is prohibited

CrazyDoctor 1 year ago
parent
commit
bae8773426
2 changed files with 28 additions and 1 deletions
  1. 27 0
      index.js
  2. 1 1
      package.json

+ 27 - 0
index.js

@@ -274,6 +274,33 @@ module.exports = {
 					}
 				};
 			}
+		},
+		// auto fixable
+		'prefer-var': {
+			meta: {
+				docs: {
+					description: 'Disallow let/const usage',
+					category: 'Z8 Stylistic Issues',
+					recommended: true,
+				},
+				fixable: 'code',
+				schema: [],
+			},
+			create: function(context) {
+				return {
+					VariableDeclaration(node) {
+						if (node.kind !== 'var') {
+							context.report({
+								node: node,
+								message: 'Prefer using `var` instead of `let` or `const`.',
+								fix: function(fixer) {
+									return fixer.replaceTextRange([node.start, node.start + node.kind.length], 'var');
+								}
+							});
+						}
+					}
+				};
+			}
 		}
 	},
 };

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "eslint-plugin-z8",
-  "version": "1.0.2",
+  "version": "1.0.3",
   "private": true,
   "main": "index.js",
   "dependencies": {