1. eslint-plugin-optimize-regex
Optimize regex literals
eslint-plugin-optimize-regex
Package: eslint-plugin-optimize-regex
Created by: BrainMaestro
Last modified: Fri, 17 Jun 2022 20:38:16 GMT
Version: 1.2.1
License: MIT
Downloads: 140,978
Repository: https://github.com/BrainMaestro/eslint-plugin-optimize-regex

Install

npm install eslint-plugin-optimize-regex
yarn add eslint-plugin-optimize-regex

eslint-plugin-optimize-regex

npm
npm

Optimize regex literals

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-optimize-regex:

npm install eslint-plugin-optimize-regex --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-optimize-regex globally.

Usage

Add optimize-regex to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

 {
    "plugins": [
        "optimize-regex"
    ]
}

Then configure the rules you want to use under the rules section.

 {
    "rules": {
        "optimize-regex/optimize-regex": "warn"
    }
}

If you wish to add a whitelist or blacklist array against regexp-tree's
transforms, you can add them on an objects object:

 {
    "rules": {
        "optimize-regex/optimize-regex": ["warn", {
            "blacklist": ["charClassClassrangesMerge"]
        }]
    }
}

If you want the latter particular settings, you can avoid setting plugins and
rules and just use:

 {
  "extends": ["optimize-regex/recommended"]
}

Or without the blacklist:

 {
  "extends": ["optimize-regex/all"]
}

Rules

Inspiration

License

MIT © Ezinwa Okpoechi

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code