@ironman4/eslint-plugin-jarvis
v1.0.1
Published
custom eslint rules for ironman
Downloads
3
Maintainers
Readme
@ironman4/eslint-plugin-jarvis
安装
除了本包,你需要同时安装 ESlint
$ npm install @ironman4/eslint-plugin-jarvis eslint --save-dev
使用
引入插件
// .eslintrc.js
module.exports = {
plugin: ["jarvis"],
rules: {
"jarvis/no-secret-info": "error"
}
}
使用 presets
// .eslintrc.js
module.exports = {
// 包含通用规则
// https://gitee.com/ironman-al/jarvis-spec/tree/main/packages/eslint-plugin-jarvis/src/configs/recommended.js
extends: "plugin:jarvis/recommended"
}
支持的规则
no-broad-semantic-versioning
不要指定宽泛的版本范围no-http-url
使用 HTTPS 协议头的 URL,而不是 HTTPno-js-in-ts-project
不要在 TS 项目中使用 JSno-secret-info
不要在代码中直接设置password
token
andsecret
信息