mysteel自定义eslint规则
-
mysteel-check/no-http
: 禁止使用http协议
npm install eslint-plugin-mysteel-check --save-dev
在项目根目录下创建.eslintrc.js
文件,内容如下:
module.exports = {
plugins: ['mysteel-check'],
rules: {
// 自定义规则
'mysteel-check/no-http': 'error',
},
};
// eslint-disable-next-line mysteel-check/no-http
const url = 'http://www.mysteel.com';