npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

eslint-plugin-emmanuel

v0.4.2

Published

My ESLint plugin

Downloads

78

Readme

eslint-plugin-emmanuel Build Status

My ESLint plugin

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-emmanuel:

$ npm install eslint-plugin-emmanuel --save-dev

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

Usage

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

{
    "plugins": [
        "emmanuel"
    ]
}

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

{
    "rules": {
        "emmanuel/rule-name": 2
    }
}

Supported Rules

  • Fill in provided rules here

When Not To Use It

If you want to use the Simplified CommonJS Wrapper format for your modules, you should not use this rule.

Key: :heavy_check_mark: = recommended, :wrench: = fixable

| Name | Description | :heavy_check_mark: | :wrench: | | ---- | ----------- | ------------------ | -------- | | emmanuel/avoid-class-name-conflict | avoid use a native name for a class name | | | | emmanuel/avoid-infinite-loop | disallow easy infinite loop | :heavy_check_mark: | | | emmanuel/avoid-typing-mistake | avoid typing mistake | | | | emmanuel/bool-concordance | check type concordance on boolean properties values | | | | emmanuel/compare-regex | use fast-deep-equal package to compare regex expressions | | :wrench: | | emmanuel/deterministic-stringify | prefer fast-json-stable-stringify package to native JSON.stringify() | | :wrench: | | emmanuel/math-shortcut | use Math constants | | :wrench: | | emmanuel/max-lines-per-loop | Max lines per a loop | | | | emmanuel/negative-array | avoid negative index on an array | | | | emmanuel/no-commented-out-code | Detect commented code | | | | emmanuel/no-divide-by-zero | No divide by zero | | | | emmanuel/no-double-negative | No double negative | | :wrench: | | emmanuel/no-duplicate-requires | eslint-plugin-import offer a rule to report when a resolved path is imported more than once, but that doesn't work with require | | | | emmanuel/no-empty-requires | Find require() or require("") | :heavy_check_mark: | | | emmanuel/no-invalid-xpath | Check XPath expressions and avoid magic number | | :wrench: | | emmanuel/no-nan | Don't try to assign value to readonly items | | :wrench: | | emmanuel/no-number-useless | useless Number object constructor | | :wrench: | | emmanuel/no-redefine-require | Detect if require() is redefine | :heavy_check_mark: | | | emmanuel/no-reuse-function-name | No reuse function name | | :wrench: | | emmanuel/no-same-arguments | avoid arguments mistake, like same string arguments in a function call | | | | emmanuel/no-similar-fn-params | Avoid similar params names | :heavy_check_mark: | | | emmanuel/no-special-number | prefer to use a standart Math constant | | :wrench: | | emmanuel/no-useless-concat | disallow unnecessary concatenation of literals or template literals | :heavy_check_mark: | :wrench: | | emmanuel/no-very-large-array | no very large array | | :wrench: | | emmanuel/prefer-array-fill | prefer Array.fill method to avoid mistake | | :wrench: | | emmanuel/prefer-flatmap | slow code, prefer flatMap method | :heavy_check_mark: | :wrench: | | emmanuel/securecontext | check isSecureContext | | | | emmanuel/simplify-regex | simplify regex | | :wrench: | | emmanuel/too-many-comments | .. | | | | emmanuel/ts-type | .. | | :wrench: | | emmanuel/url-needed | .. | | :wrench: |