最近学习eslint
,自己写了常用配置命名为eslint-config-threerocks
,github地址,本地用npm link
测试通过后,在其他项目建立.eslintrc.json
并写入内容
{
"extends": "eslint-config-threerocks"
}
并用eslint index.js
进行测试,正常检测
最后把eslint-config-threerocks
发布到npm
,在之前的项目中使用npm unlink
断开链接,之后npm i eslint-config-threerocks --save
安装发布的包,之后再次使用eslint index.js
进行测试,提示找不到eslint-config-threerocks