set nu! " 显示行号 set hls " 寻找时匹配高亮显示 syntaxon" 语法高亮 set background=dark colorscheme solarized setshiftwidth=2" 设置格式化时代码缩进为2个空格 set tabstop=2" tab键缩进为4格子 set expandtab " tab键转换为空格 set incsearch " 很聪明的查找,输入一个字符马上自动匹配,而不是输入完再查找 set ignorecase " 搜索时大小写不敏感 set wildmenu " vim 自身命令行模式智能补全 setts=4" 设置 tab 键为四个空格 setcindent" 设置自动缩近 setshiftwidth=4" 设置每一级缩进长度为4 set nocompatible " 自动补全 set backspace=2" 解决不能删除的问题
npx create-react-app create-react-app cd create-react-app ./node_modules/.bin/eslint --init # Use a popular style guide ——> Airbnb ——> y ——> JavaScript ——> n npm install --save--dev eslint-config-airbnb 或: yarn add --dev eslint-config-airbnb