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这个文件

转载于:https://www.cnblogs.com/bbb324/p/9306450.html

你可能感兴趣的:(eslint 代码优化)