GitHub - sindresorhus/eslint-plugin-unicorn: More than 100 powerful ESLint rules

better-regex Improve regexes by making them shorter, consistent, and safer. πŸ”§ catch-error-name Enforce a specific parameter name in catch clauses. βœ… πŸ”§ consistent-assert Enforce consistent assertion style with node:assert. βœ… πŸ”§ consistent-date-clone Prefer passing Date directly to the constructor when cloning. βœ… β˜‘οΈ πŸ”§ consistent-destructuring Use destructured variables over properties. πŸ’‘ consistent-empty-array-spread Prefer consistent types when spreading a ternary in an array literal. βœ… πŸ”§ consistent-existence-index-check Enforce consistent style for element existence checks with indexOf(), lastIndexOf(), findIndex(), and findLastIndex(). βœ… β˜‘οΈ πŸ”§ consistent-function-scoping Move function definitions to the highest possible scope. βœ… consistent-template-literal-escape Enforce consistent style for escaping ${ in template literals. βœ… πŸ”§ custom-error-definition Enforce correct Error subclassing. πŸ”§ empty-brace-spaces Enforce no spaces between braces. βœ… πŸ”§ error-message Enforce passing a message value when creating a built-in error. βœ… β˜‘οΈ escape-case Require escape sequences to use uppercase or lowercase values. βœ… β˜‘οΈ πŸ”§ expiring-todo-comments Add expiration conditions to TODO comments. βœ… β˜‘οΈ explicit-length-check Enforce explicitly comparing the length or size property of a value. βœ… πŸ”§ πŸ’‘ filename-case Enforce a case style for filenames. βœ… import-style Enforce specific import styles per module. βœ… β˜‘οΈ isolated-functions Prevent usage of variables from outside the scope of isolated functions. βœ… new-for-builtins Enforce the use of new for all builtins, except String, Number, Boolean, Symbol and BigInt. βœ… β˜‘οΈ πŸ”§ πŸ’‘ no-abusive-eslint-disable Enforce specifying rules to disable in eslint-disable comments. βœ… β˜‘οΈ no-accessor-recursion Disallow recursive access to this within getters and setters. βœ… β˜‘οΈ no-anonymous-default-export Disallow anonymous functions and classes as the default export. βœ… β˜‘οΈ πŸ’‘ no-array-callback-reference Prevent passing a function reference directly to iterator methods. βœ… πŸ’‘ no-array-for-each Prefer for…of over the forEach method. βœ… β˜‘οΈ πŸ”§ πŸ’‘ no-array-method-this-argument Disallow using the this argument in array methods. βœ… β˜‘οΈ πŸ”§ πŸ’‘ no-array-reduce Disallow Array#reduce() and Array#reduceRight(). βœ… no-array-reverse Prefer Array#toReversed() over Array#reverse(). βœ… β˜‘οΈ πŸ’‘ no-array-sort Prefer Array#toSorted() over Array#sort(). βœ… β˜‘οΈ πŸ’‘ no-await-expression-member Disallow member access from await expression. βœ… πŸ”§ no-await-in-promise-methods Disallow using await in Promise method parameters. βœ… β˜‘οΈ πŸ’‘ no-console-spaces Do not use leading/trailing space between console.log parameters. βœ… β˜‘οΈ πŸ”§ no-document-cookie Do not use document.cookie directly. βœ… β˜‘οΈ no-empty-file Disallow empty files. βœ… β˜‘οΈ no-for-loop Do not use a for loop that can be replaced with a for-of loop. βœ… πŸ”§ πŸ’‘ no-hex-escape Enforce the use of Unicode escapes instead of hexadecimal escapes. βœ… β˜‘οΈ πŸ”§ no-immediate-mutation Disallow immediate mutation after variable assignment. βœ… πŸ”§ πŸ’‘ no-instanceof-builtins Disallow instanceof with built-in objects βœ… β˜‘οΈ πŸ”§ πŸ’‘ no-invalid-fetch-options Disallow invalid options in fetch() and new Request(). βœ… β˜‘οΈ no-invalid-remove-event-listener Prevent calling EventTarget#removeEventListener() with the result of an expression. βœ… β˜‘οΈ no-keyword-prefix Disallow identifiers starting with new or class. no-lonely-if Disallow if statements as the only statement in if blocks without else. βœ… β˜‘οΈ πŸ”§ no-magic-array-flat-depth Disallow a magic number as the depth argument in Array#flat(…). βœ… β˜‘οΈ no-named-default Disallow named usage of default import and export. βœ… β˜‘οΈ πŸ”§ no-negated-condition Disallow negated conditions. βœ… β˜‘οΈ πŸ”§ no-negation-in-equality-check Disallow negated expression in equality check. βœ… β˜‘οΈ πŸ’‘ no-nested-ternary Disallow nested ternary expressions. βœ… πŸ”§ no-new-array Disallow new Array(). βœ… β˜‘οΈ πŸ”§ πŸ’‘ no-new-buffer Enforce the use of Buffer.from() and Buffer.alloc() instead of the deprecated new Buffer(). βœ… β˜‘οΈ πŸ”§ πŸ’‘ no-null Disallow the use of the null literal. βœ… πŸ”§ πŸ’‘ no-object-as-default-parameter Disallow the use of objects as default parameters. βœ… β˜‘οΈ no-process-exit Disallow process.exit(). βœ… β˜‘οΈ no-single-promise-in-promise-methods Disallow passing single-element arrays to Promise methods. βœ… β˜‘οΈ πŸ”§ πŸ’‘ no-static-only-class Disallow classes that only have static members. βœ… β˜‘οΈ πŸ”§ no-thenable Disallow then property. βœ… β˜‘οΈ no-this-assignment Disallow assigning this to a variable. βœ… β˜‘οΈ no-typeof-undefined Disallow comparing undefined using typeof. βœ… β˜‘οΈ πŸ”§ πŸ’‘ no-unnecessary-array-flat-depth Disallow using 1 as the depth argument of Array#flat(). βœ… β˜‘οΈ πŸ”§ no-unnecessary-array-splice-count Disallow using .length or Infinity as the deleteCount or skipCount argument of Array#{splice,toSpliced}(). βœ… β˜‘οΈ πŸ”§ no-unnecessary-await Disallow awaiting non-promise values. βœ… β˜‘οΈ πŸ”§ no-unnecessary-polyfills Enforce the use of built-in methods instead of unnecessary polyfills. βœ… β˜‘οΈ no-unnecessary-slice-end Disallow using .length or Infinity as the end argument of {Array,String,TypedArray}#slice(). βœ… β˜‘οΈ πŸ”§ no-unreadable-array-destructuring Disallow unreadable array destructuring. βœ… β˜‘οΈ πŸ”§ no-unreadable-iife Disallow unreadable IIFEs. βœ… β˜‘οΈ no-unused-properties Disallow unused object properties. no-useless-collection-argument Disallow useless values or fallbacks in Set, Map, WeakSet, or WeakMap. βœ… β˜‘οΈ πŸ”§ πŸ’‘ no-useless-error-capture-stack-trace Disallow unnecessary Error.captureStackTrace(…). βœ… β˜‘οΈ πŸ”§ no-useless-fallback-in-spread Disallow useless fallback when spreading in object literals. βœ… β˜‘οΈ πŸ”§ no-useless-length-check Disallow useless array length check. βœ… β˜‘οΈ πŸ”§ no-useless-promise-resolve-reject Disallow returning/yielding Promise.resolve/reject() in async functions or promise callbacks βœ… β˜‘οΈ πŸ”§ no-useless-spread Disallow unnecessary spread. βœ… β˜‘οΈ πŸ”§ no-useless-switch-case Disallow useless case in switch statements. βœ… β˜‘οΈ πŸ’‘ no-useless-undefined Disallow useless undefined. βœ… β˜‘οΈ πŸ”§ no-zero-fractions Disallow number literals with zero fractions or dangling dots. βœ… β˜‘οΈ πŸ”§ number-literal-case Enforce proper case for numeric literals. βœ… β˜‘οΈ πŸ”§ numeric-separators-style Enforce the style of numeric separators by correctly grouping digits. βœ… β˜‘οΈ πŸ”§ prefer-add-event-listener Prefer .addEventListener() and .removeEventListener() over on-functions. βœ… β˜‘οΈ πŸ”§ prefer-array-find Prefer .find(…) and .findLast(…) over the first or last element from .filter(…). βœ… β˜‘οΈ πŸ”§ πŸ’‘ prefer-array-flat Prefer Array#flat() over legacy techniques to flatten arrays. βœ… β˜‘οΈ πŸ”§ prefer-array-flat-map Prefer .flatMap(…) over .map(…).flat(). βœ… β˜‘οΈ πŸ”§ prefer-array-index-of Prefer Array#{indexOf,lastIndexOf}() over Array#{findIndex,findLastIndex}() when looking for the index of an item. βœ… β˜‘οΈ πŸ”§ πŸ’‘ prefer-array-some Prefer .some(…) over .filter(…).length check and .{find,findLast,findIndex,findLastIndex}(…). βœ… β˜‘οΈ πŸ”§ πŸ’‘ prefer-at Prefer .at() method for index access and String#charAt(). βœ… β˜‘οΈ πŸ”§ πŸ’‘ prefer-bigint-literals Prefer BigInt literals over the constructor. βœ… β˜‘οΈ πŸ”§ πŸ’‘ prefer-blob-reading-methods Prefer Blob#arrayBuffer() over FileReader#readAsArrayBuffer(…) and Blob#text() over FileReader#readAsText(…). βœ… β˜‘οΈ prefer-class-fields Prefer class field declarations over this assignments in constructors. βœ… β˜‘οΈ πŸ”§ πŸ’‘ prefer-classlist-toggle Prefer using Element#classList.toggle() to toggle class names. βœ… β˜‘οΈ πŸ”§ πŸ’‘ prefer-code-point Prefer String#codePointAt(…) over String#charCodeAt(…) and String.fromCodePoint(…) over String.fromCharCode(…). βœ… β˜‘οΈ πŸ’‘ prefer-date-now Prefer Date.now() to get the number of milliseconds since the Unix Epoch. βœ… β˜‘οΈ πŸ”§ prefer-default-parameters Prefer default parameters over reassignment. βœ… β˜‘οΈ πŸ’‘ prefer-dom-node-append Prefer Node#append() over Node#appendChild(). βœ… β˜‘οΈ πŸ”§ prefer-dom-node-dataset Prefer using .dataset on DOM elements over calling attribute methods. βœ… β˜‘οΈ πŸ”§ prefer-dom-node-remove Prefer childNode.remove() over parentNode.removeChild(childNode). βœ… β˜‘οΈ πŸ”§ πŸ’‘ prefer-dom-node-text-content Prefer .textContent over .innerText. βœ… β˜‘οΈ πŸ’‘ prefer-event-target Prefer EventTarget over EventEmitter. βœ… β˜‘οΈ prefer-export-from Prefer export…from when re-exporting. βœ… πŸ”§ πŸ’‘ prefer-global-this Prefer globalThis over window, self, and global. βœ… β˜‘οΈ πŸ”§ prefer-import-meta-properties Prefer import.meta.{dirname,filename} over legacy techniques for getting file paths. πŸ”§ prefer-includes Prefer .includes() over .indexOf(), .lastIndexOf(), and Array#some() when checking for existence or non-existence. βœ… β˜‘οΈ πŸ”§ πŸ’‘ prefer-json-parse-buffer Prefer reading a JSON file as a buffer. πŸ”§ prefer-keyboard-event-key Prefer KeyboardEvent#key over KeyboardEvent#keyCode. βœ… β˜‘οΈ πŸ”§ prefer-logical-operator-over-ternary Prefer using a logical operator over a ternary. βœ… β˜‘οΈ πŸ’‘ prefer-math-min-max Prefer Math.min() and Math.max() over ternaries for simple comparisons. βœ… β˜‘οΈ πŸ”§ prefer-math-trunc Enforce the use of Math.trunc instead of bitwise operators. βœ… β˜‘οΈ πŸ”§ πŸ’‘ prefer-modern-dom-apis Prefer .before() over .insertBefore(), .replaceWith() over .replaceChild(), prefer one of .before(), .after(), .append() or .prepend() over insertAdjacentText() and insertAdjacentElement(). βœ… β˜‘οΈ πŸ”§ prefer-modern-math-apis Prefer modern Math APIs over legacy patterns. βœ… β˜‘οΈ πŸ”§ prefer-module Prefer JavaScript modules (ESM) over CommonJS. βœ… β˜‘οΈ πŸ”§ πŸ’‘ prefer-native-coercion-functions Prefer using String, Number, BigInt, Boolean, and Symbol directly. βœ… β˜‘οΈ πŸ”§ prefer-negative-index Prefer negative index over .length - index when possible. βœ… β˜‘οΈ πŸ”§ prefer-node-protocol Prefer using the node: protocol when importing Node.js builtin modules. βœ… β˜‘οΈ πŸ”§ prefer-number-properties Prefer Number static properties over global ones. βœ… β˜‘οΈ πŸ”§ πŸ’‘ prefer-object-from-entries Prefer using Object.fromEntries(…) to transform a list of key-value pairs into an object. βœ… β˜‘οΈ πŸ”§ prefer-optional-catch-binding Prefer omitting the catch binding parameter. βœ… β˜‘οΈ πŸ”§ prefer-prototype-methods Prefer borrowing methods from the prototype instead of the instance. βœ… β˜‘οΈ πŸ”§ prefer-query-selector Prefer .querySelector() over .getElementById(), .querySelectorAll() over .getElementsByClassName() and .getElementsByTagName() and .getElementsByName(). βœ… πŸ”§ prefer-reflect-apply Prefer Reflect.apply() over Function#apply(). βœ… β˜‘οΈ πŸ”§ prefer-regexp-test Prefer RegExp#test() over String#match() and RegExp#exec(). βœ… β˜‘οΈ πŸ”§ πŸ’‘ prefer-response-static-json Prefer Response.json() over new Response(JSON.stringify()). βœ… β˜‘οΈ πŸ”§ prefer-set-has Prefer Set#has() over Array#includes() when checking for existence or non-existence. βœ… β˜‘οΈ πŸ”§ πŸ’‘ prefer-set-size Prefer using Set#size instead of Array#length. βœ… β˜‘οΈ πŸ”§ prefer-single-call Enforce combining multiple Array#push(), Element#classList.{add,remove}(), and importScripts() into one call. βœ… β˜‘οΈ πŸ”§ πŸ’‘ prefer-spread Prefer the spread operator over Array.from(…), Array#concat(…), Array#{slice,toSpliced}() and String#split(''). βœ… πŸ”§ πŸ’‘ prefer-string-raw Prefer using the String.raw tag to avoid escaping \. βœ… β˜‘οΈ πŸ”§ prefer-string-replace-all Prefer String#replaceAll() over regex searches with the global flag. βœ… β˜‘οΈ πŸ”§ prefer-string-slice Prefer String#slice() over String#substr() and String#substring(). βœ… β˜‘οΈ πŸ”§ prefer-string-starts-ends-with Prefer String#startsWith() & String#endsWith() over RegExp#test(). βœ… β˜‘οΈ πŸ”§ πŸ’‘ prefer-string-trim-start-end Prefer String#trimStart() / String#trimEnd() over String#trimLeft() / String#trimRight(). βœ… β˜‘οΈ πŸ”§ prefer-structured-clone Prefer using structuredClone to create a deep clone. βœ… β˜‘οΈ πŸ’‘ prefer-switch Prefer switch over multiple else-if. βœ… β˜‘οΈ πŸ”§ prefer-ternary Prefer ternary expressions over simple if-else statements. βœ… β˜‘οΈ πŸ”§ prefer-top-level-await Prefer top-level await over top-level promises and async function calls. βœ… β˜‘οΈ πŸ’‘ prefer-type-error Enforce throwing TypeError in type checking conditions. βœ… β˜‘οΈ πŸ”§ prevent-abbreviations Prevent abbreviations. βœ… πŸ”§ relative-url-style Enforce consistent relative URL style. βœ… β˜‘οΈ πŸ”§ πŸ’‘ require-array-join-separator Enforce using the separator argument with Array#join(). βœ… β˜‘οΈ πŸ”§ require-module-attributes Require non-empty module attributes for imports and exports βœ… β˜‘οΈ πŸ”§ require-module-specifiers Require non-empty specifier list in import and export statements. βœ… β˜‘οΈ πŸ”§ πŸ’‘ require-number-to-fixed-digits-argument Enforce using the digits argument with Number#toFixed(). βœ… β˜‘οΈ πŸ”§ require-post-message-target-origin Enforce using the targetOrigin argument with window.postMessage(). πŸ’‘ string-content Enforce better string content. πŸ”§ πŸ’‘ switch-case-braces Enforce consistent brace style for case clauses. βœ… πŸ”§ template-indent Fix whitespace-insensitive template indentation. βœ… πŸ”§ text-encoding-identifier-case Enforce consistent case for text encoding identifiers. βœ… β˜‘οΈ πŸ”§ πŸ’‘ throw-new-error Require new when creating an error. βœ… β˜‘οΈ πŸ”§