# 1. VSCode中Flow报错解决
在VSCode中设置
"typescript.validate.enable": false,
"javascript.validate.enable": false,
VSCode中哪里能设置这个,最后在Code->Preferences->Settings
中搜索,才找到settings.json
这个文件
# 2. VScode 技巧
- 编辑器如vscode一屏幕内显示30行左右比较舒服,比较方便
- 要重置vscode所有设置,只需要把
setting.json
文件内容删掉
# 2.1. 快捷键
ctrl+enter
在下方插入一行ctrl+shift+enter
在上方插入一行
# 2.2. VScode 常用插件
css peek
:html
和css
关联prettier
:代码格式化Icon Fonts
:图标集Auto Rename Tag
:自动修改标签Html Boilerplate
:html
模板Color Info
:颜色提示Auto Close Tag
:自动闭合标签HTML CSS Support
:html
中css
,class
自动提示
# 2.3. 在 VScode 中高亮 css-in-js 语法的插件
vscode-styled-jsx
# 3. .editorConfig
文件
如果没有设置.editorConfig
文件,会使用编辑器里的规则,如果设置了.editorConfig
文件,则会优先使用这个文件里的配置:
# editorconfig.org
root = true
[*]
charset = utf-8
indent_size = 2
indent_syle = space
insert_final_newline = true # 是否使文件以一个空白行结尾
tirm_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false # 自动去除行尾多余的空格