ESlint在vite中出现的坑
1、Unable to resolve path to module报错原因:因为vite需要自己构建配置而vue-cli自动构建"@",所以eslint不识别webpack的路径别名在.eslintrc.js文件中rules中添加以下代码'import/no-unresolved': 'off','import/extensions': 'off','import/no-absolute-pat
·
1、Unable to resolve path to module报错
原因:因为vite需要自己构建配置而vue-cli自动构建"@",所以eslint不识别webpack的路径别名
在.eslintrc.js文件中rules中添加以下代码
'import/no-unresolved': 'off',
'import/extensions': 'off',
'import/no-absolute-path': 'off',
'import/no-extraneous-dependencies': 'off',
二、Unexpected console statement no-console 警告处理
原因:eslint代码格式检测到console函数
在.eslintrc.js文件中rules中添加以下代码
'no-console': 'off'
三、Unary operator ‘++’ used no-plusplus 警告
原因:Eslint禁止使用++与–,因为一元运算符会自动插入分号,如果一元运算符前有空格,可能会引发歧义
在.eslintrc.js文件中rules中添加以下代码
'no-plusplus': [
'off',
{
allowForLoopAfterthoughts: true
}
]
更多推荐
已为社区贡献1条内容
所有评论(0)