0.0.9 • Published 2 years ago

eslint-plugin-grantlint v0.0.9

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

eslint-plugin-grantlint

自定义ESlint rule

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-grantlint:

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:

{
    "plugins": [
        "grantlint"
    ]
}

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

{
    "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 // 测试该规则的文件
0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago