选择合适的IDE
一个好的IDE就像是好的武器,决定了你的开发效率:
Atom
安装 language-babel 包并跟随此流程 instructions.
Sublime Text 3
首先安装 Package Control,然后安装从Package Control菜单中安装 Babel 包并跟随此流程 instructions.
Visual Studio Code
不错的选择
WebStorm
有钱人的选择
EditorConfig
无论你选择哪一个IDE,都希望你的团队和你保持相同的基本配置,此时你可以在项目中添加.editorconfig.
root = true
[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
end_of_line = lf
# editorconfig-tools is unable to ignore longs strings or urls
max_line_length = null
本页参考自Babel Editor
本页编辑:Benwei