摘要:
1.7 运行报错 error Expected linebreaks to be 'LF' but found 'CRLF' linebreak-style 解决方法 eslintrc.js ->》rules rules: { "linebreak-style": [0 ,"error", "win 阅读全文
摘要:
[ { "key": "alt+i", "command": "cursorUp", "when": "textInputFocus" }, { "key": "up", "command": "cursorUp", "when": "textInputFocus" }, { "key": "alt 阅读全文
摘要:
首先在Vscode中安装一下Eslint 在settings.json中进行修改,加入以下代码即可。 "editor.codeActionsOnSave": { "source.fixAll.eslint": true, "eslint.autoFixOnSave" : true, }, 文件保存之 阅读全文
摘要:
nvm for windows是一个命令行工具,在控制台输入nvm,就可以看到它的命令用法。基本命令有: nvm arch [32|64] : 显示node是运行在32位还是64位模式。指定32或64来覆盖默认体系结构。 nvm install [arch]: 该可以是node.js版本或最新稳定版 阅读全文
摘要:
报错信息:panic: While parsing config: yaml: line 9: mapping values are not allowed in 解决方法: 出现这个错误的是因为yaml格式不正确,谷歌定义的yaml格式太严格了,每个冒号后面都必须带有空格 阅读全文