qcxn-eslint-plugin
v1.0.0
Published
启辰新能 自定义eslint插件
Downloads
4
Readme
qcxn-eslint-plugin
安装
除了本包,你需要同时安装 Eslint
npm install qcxn-eslint-plugin eslint --save-dev
使用
引入插件
// .eslintrc.js
module.exports = {
plugin: ['qcxn-eslint-plugin'],
rules: {
'qcxn-eslint-plugin/no-secret-info': 'error',
},
}
使用 presets
// .eslintrc.js
module.exports = {
extends: 'plugin:qcxn-eslint-plugin/recommended',
}
支持的规则
no-broad-semantic-versioning
不要指定宽泛的版本范围no-http-url
使用 HTTPS 协议头的 URL,而不是 HTTPno-js-in-ts-project
不要在 TS 项目中使用 JSno-secret-info
不要在代码中直接设置password
token
andsecret
信息