VSCode配置RN之ESLint
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VSCode配置RN之ESLint相关的知识,希望对你有一定的参考价值。
参考技术A 使用本地安装的 ESLint 时,你使用的任何插件或可分享的配置也都必须在本地安装。如果你想使 ESLint 适用于你所有的项目,建议你全局安装 ESLint。
使用全局安装的 ESLint 时,你使用的任何插件或可分享的配置也都必须在全局安装。
参考资料:
vscode 配置eslint,保存格式化样式
1-vscode 中安装eslint
2-在vue项目中开启esLint检测, 在vue.config.js文件中
lintOnSave: true,
3-下面是我vscode的配置文件settings.json文件
{
// VScode主题配置
"editor.tabSize": 2,
"eslint.autoFixOnSave": true, // 每次保存的时候将代码按eslint格式进行修复
"editor.lineHeight": 24,
"editor.renderLineHighlight": "none",
"editor.renderWhitespace": "none",
"editor.fontFamily": "Consolas",
"editor.fontSize": 13,
"editor.cursorBlinking": "smooth",
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnSave": true,
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": false
},
"prettier.semi": true, //去掉代码结尾的分号
"prettier.singleQuote": false, //使用单引号替代双引号
"javascript.format.insertSpaceBeforeFunctionParenthesis": true, //让函数(名)和后面的括号之间加个空格
"vetur.format.defaultFormatter.html": "js-beautify-html", //格式化.vue中html
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": "force-aligned" //属性强制折行对齐
}
},
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
"vue",
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"debug.console.fontSize": 14,
"git.path": "F:/Program Files/Git/bin/git.exe", //git路径的配置
}
以上是关于VSCode配置RN之ESLint的主要内容,如果未能解决你的问题,请参考以下文章
【Eslint配置】 eslint-config-* 和 eslint-plugin-* 的区别
vscode下import语句报[eslint]unable to resolve path to module (import/no-resovled)