# eslint-plugin-grantlint

> custom ESlint rule

Latest version **0.0.9** (published 2022-01-04) · ISC license · 0 weekly downloads

## Install

```sh
npm install eslint-plugin-grantlint
pnpm add eslint-plugin-grantlint
yarn add eslint-plugin-grantlint
bun add eslint-plugin-grantlint
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.9 |
| Published | 2022-01-04 |
| First published | 2021-11-17 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Node | 12.x \|\| 14.x \|\| >= 16 |
| Dependencies | 1 |
| Unpacked size | 8.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | grantguo |
| Maintainers | grantguo |
| Keywords | eslint, eslintplugin, eslint-plugin |

## Links

- npm: https://www.npmjs.com/package/eslint-plugin-grantlint
- npm.io page: https://npm.io/package/eslint-plugin-grantlint

## Dependencies (1)

- [requireindex](https://npm.io/package/requireindex.md) ^1.2.0

## Alternatives

- [eslint-plugin-sonarjs](https://npm.io/package/eslint-plugin-sonarjs.md) — 2.9M weekly downloads
- [eslint-config-expo](https://npm.io/package/eslint-config-expo.md) — 1.5M weekly downloads
- [@matter/protocol](https://npm.io/package/@matter/protocol.md) — 63.5K weekly downloads
- [@eventcatalog/linter](https://npm.io/package/@eventcatalog/linter.md) — 24.8K weekly downloads
- [@inrupt/eslint-config-base](https://npm.io/package/@inrupt/eslint-config-base.md) — 4.5K weekly downloads

## Recent versions

- 0.0.9 (latest) — 2022-01-04
- 0.0.8 — 2021-11-17
- 0.0.7 — 2021-11-17
- 0.0.6 — 2021-11-17
- 0.0.5 — 2021-11-17
- 0.0.4 — 2021-11-17
- 0.0.3 — 2021-11-17
- 0.0.2 — 2021-11-17
- 0.0.1 — 2021-11-17

## README

# eslint-plugin-grantlint

自定义ESlint rule

## Installation

You'll first need to install [ESLint](https://eslint.org/):

```sh
npm i eslint --save-dev
```

Next, install `eslint-plugin-grantlint`:

```sh
npm install eslint-plugin-grantlint --save-dev
```

## Usage

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

```json
{
    "plugins": [
        "grantlint"
    ]
}
```


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

```json
{
    "rules": {
        "grantlint/rule-name": 2
    }
}
```

## Supported Rules

* Fill in provided rules here

## Files
.

├── README.md

├── docs // 使用文档

│   └── rules // 所有规则的文档

│       └── settimeout-no-number.md // 具体规则文档

├── lib // eslint 规则开发

│   ├── index.js 引入+导出rules文件夹的规则

│   └── rules // 此目录下可以构建多个规则

│       └── settimeout-no-number.js // 规则细节

├── package.json

└── tests // 单元测试
    
    └── lib
        
        └── rules
            
            └── settimeout-no-number.js // 测试该规则的文件

---
_Source: https://npm.io/package/eslint-plugin-grantlint · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
