eslint 代码优化
Posted bbb324
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了eslint 代码优化相关的知识,希望对你有一定的参考价值。
喔喔喔~~~ 有半年都没写过什么了,罪过罪过!
npm v5.2.0引入的一条命令(npx),引入这个命令的目的是为了提升开发者使用包内提供的命令行工具的体验。也就是说 npx 会自动查找当前依赖包中的可执行文件,如果找不到,就会去 PATH 里找。如果依然找不到,就会帮你安装!
vim 执行代码,可以设置后缀 js 或者 jsx
npx eslint . --ext=js,jsx --fix
需要在项目中安装 eslint-config-ot-browser, github 地址: https://github.com/dominicbarnes/eslint-config-browser
.editorconfig 配置信息:
root = true [*] indent_style = space indent_size = 4 end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [*.md] trim_trailing_whitespace = false [package.json] insert_final_newline = false
.eslintrc.json 配置信息:
{ "extends": "@ali/eslint-config-ot-browser" }
还可以配置忽略的信息内容,在.eslintignore zh这个文件
以上是关于eslint 代码优化的主要内容,如果未能解决你的问题,请参考以下文章
报错:✘ http://eslint.org/docs/rules/indent Expected indentation of 0 s paces but found 2(代码片段
优化 C# 代码片段、ObservableCollection 和 AddRange
使用 C++ 反转句子中的每个单词需要对我的代码片段进行代码优化
Android 逆向整体加固脱壳 ( DEX 优化流程分析 | DexPrepare.cpp 中 dvmOptimizeDexFile() 方法分析 | /bin/dexopt 源码分析 )(代码片段