{
"files.autoSave": "off",
"window.title": "${dirty}${activeEditorLong}${separator}${rootName}${separator}${appName}",
"go.languageServerExperimentalFeatures": {
"diagnostics": true // for build and vet errors as you type
},
"[go]": {
"editor.snippetSuggestions": "none",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"gopls": {
"usePlaceholders": true // add parameter placeholders when completing a function
},
"files.eol": "\n",
"workbench.editor.enablePreview": false,
"editor.fontSize": 16, // formatting only supports LF line endings
//配置eslint
"eslint.autoFixOnSave": true,
"files.autoSave": "off",
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
{
"language": "vue",
"autoFix": true
}
],
// 改为你的文件路径
"eslint.options": {
"configFile": "./.eslintrc.js"
},
//为了符合eslint的两个空格间隔原则
"editor.tabSize": 2,
"editor.quickSuggestions": {
"strings": true
}
}

最新文章

  1. ASP.NET Core 中文文档 第四章 MVC(4.6)Areas(区域)
  2. Spring-test使用JUnit时,测试类autowired报错,create bean error
  3. cvInRangeS函数演示
  4. [转]从JVM角度看线程安全与垃圾收集
  5. XML CDATA节点
  6. 集合类 Contains 方法 深入详解 与接口的实例
  7. MySQL数据库错误server_errno=2013的解决
  8. shell 加法
  9. onMouseDown onMouseUp onMouseMove(移动鼠标图像大小变化)
  10. 插入排序(Insertion Sort)
  11. sql 练习(1)
  12. python list有关remove的问题
  13. Spring 3.x 读书笔记
  14. Kindeditor JS 取值问题以及上传图片后回调等
  15. C# 对文本文件的几种读写方法总结
  16. Python练习一
  17. K8S、云计算、大数据、编程语言
  18. prometheus杂碎
  19. QWidget窗口类
  20. 配置内网DNS实现内部域名解析

热门文章

  1. MVC的学习步骤
  2. RHEL7系统安装方式
  3. 2019.7.29 NOIP模拟测试10 反思总结【T2补全】
  4. 七牛云+MPic-图床神器搭建
  5. 使用Data Lake Analytics + OSS分析CSV格式的TPC-H数据集
  6. C++ operator new和new operator的区别
  7. 微信小程序--Tab栏切换的快速实现
  8. 学习笔记(1)---matlab中常见函数解析
  9. 利用ajax异步校验验证码(转)
  10. JavaScript 防抖和节流