初始化项目配置的几个隐藏文件

.editorconfig 编辑器配置缩进等

root = true
end_of_line = lf
insert_final_newline = true
charset = utf-8
indent_style = space
indent_size = 4

.babelrc babel编辑配置

{
   "presets": ["env", {
       "modules": false
    }],
    "plugins": [
       ["zent"]
    ],
    "stage-2"
}

.gitignore git同步过滤目录

# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*