VSCode settings.json

网络中查到一些优秀的 settings.json

{
    //主题设置
    "workbench.colorTheme": "Monokai",
    // 默认编辑器字号
    "editor.fontSize": 14,
    //是否自动换行 
    "editor.wordWrap": "on",
    // tab几个缩进
    "editor.tabSize": 2,
    // 文件自动保存
    "files.autoSave": "afterDelay",
    // 自动格式化粘贴的代码
    "editor.formatOnPaste": true,
    // 在资源管理器删除内容时候是否进行用户提醒
    "explorer.confirmDelete": false,
    // 控制在资源管理器内拖放移动文件或文件夹时是否进行确认
    "explorer.confirmDragAndDrop": false,
    // 在资源管理器拖拽文件是否进行用户提醒
    "workbench.statusBar.visible": true,
    // 工作区缩放级别
    "window.zoomLevel": 0,
    // 重命名或移动文件时,启用或禁用自动更新导入路径
    "javascript.updateImportsOnFileMove.enabled": "always",
    // 启用/禁用导航路径
    "breadcrumbs.enabled": true,
    // 终端cmd字号
    "terminal.integrated.fontSize": 16,
    // 不检查缩进,保存后统一按设置项来设置
    "editor.detectIndentation": false,
    // 编辑器初始界面
    "workbench.startupEditor": "newUntitledFile",
    // 工作台状态栏是否可见
    "workbench.statusBar.feedback.visible":false,
    // 添加多个光标时候需要的快捷键
    "editor.multiCursorModifier": "ctrlCmd",
    // 自定义代码片段显示的位置
    "editor.snippetSuggestions": "top",
    "window.menuBarVisibility": "toggle",
    // 启用后,按下 TAB 键,将展开 Emmet 缩写。
    "emmet.triggerExpansionOnTab": true,
    // 控制编辑器在空白字符上显示符号的方式
    "editor.renderWhitespace": "all",
    // 控制编辑器是否应呈现空白字符
    "editor.renderControlCharacters": false,
    // 在文件和文件夹上显示错误和警告
    "problems.decorations.enabled": false,
    // html文件格式化程序
    "[html]": {
        "editor.defaultFormatter": "vscode.html-language-features",
        "editor.codeActionsOnSave": {
          // 禁止eslint对html进行校验
          "source.fixAll.eslint": false,
          // 禁止stylelint对html进行校验
          "source.fixAll.stylelint": false
        }
    },
    // 编辑器文件保存时的操作(MacOS:快捷键是 command + s ),并不能修复所有问题,多数还是需要手动修复
    // 
    "editor.codeActionsOnSave": {
      // 文件保存时开启eslint自动修复程序
      "source.fixAll.eslint": true,
      // 文件保存时开启stylelint自动修复程序
      "source.fixAll.stylelint": true
    },
    // "[javascript]": {
    //     "editor.defaultFormatter": "vscode.typescript-language-features"
    // },

    // vscode-fileheader  -----settings begin-----

    // 文件作者
    "fileheader.Author": "JiaoShouf2e",
    // 文件最后修改者
    "fileheader.LastModifiedBy": "JiaoShouf2e",
    
    // vscode-fileheader  -----settings end-----

    
    //stylelint   -----settings begin-----
    
    // 防止编辑器内置linter与插件冲突设置
    "css.validate": false,
    "less.validate": false,
    "scss.validate": false,
    // 启用stylelint插件
    "stylelint.enable": true,

    //stylelint   -----settings end-----

    // eslint   -----settings begin-----

    // 是否为JavaScript文件开启eslint检测
    "eslint.enable": true,
    // 保存之后进行lint
    "eslint.run": "onSave",
    // 是否启用eslint的调试模式
    "eslint.debug": true
    // eslint   -----settings end-----
    
}

我得settings.json

{
  "git.ignoreMissingGitWarning": true,
  "window.zoomLevel": 0,
  
  "emmet.syntaxProfiles": {
    "vue-html": "html",
    "vue": "html"
  },
  "emmet.triggerExpansionOnTab": true,
  "emmet.includeLanguages": {
    "vue-html": "html",
  },
  "files.associations": {
    "*.vue": "vue"
  },
  "editor.fontFamily": "Fira Code,Consolas, 'Courier New', monospace",
  "git.enabled": true,
  "editor.tabSize": 2,
  "editor.detectIndentation": false,

  // vscode-fileheader  -----settings begin-----

  // 文件作者
  "fileheader.Author": "haoxiaojun",
  // 文件最后修改者
  "fileheader.LastModifiedBy": "haoxiaojun",
  // 注释模板
  "fileheader.tpl": "/*\r\n * @Author: {author} \r\n * @Date: {createTime} \r\n * @Details:  \r\n * @Last Modified by:   {lastModifiedBy} \r\n * @Last Modified time: {updateTime} \r\n */\r\n",
  
  // vscode-fileheader  -----settings end-----
  
  // eslint   -----settings begin-----

  // 是否为JavaScript文件开启eslint检测
  "eslint.enable": true,
  // 保存之后进行lint
  "eslint.run": "onSave",
  // 是否启用eslint的调试模式
  "eslint.debug": true,
  "eslint.options": {
    "extensions": [
      ".js",
      ".vue"
    ]
  },
  "eslint.validate": ["javascript", "vue", "html"],

  // eslint   -----settings end-----

  // stylelint   -----settings begin-----
    
  // 防止编辑器内置linter与插件冲突设置
  // "css.validate": false,
  // "less.validate": false,
  // "scss.validate": false,
  // 启用stylelint插件
  "stylelint.enable": true,
  "stylelint.validate":[
    "css",
    "less",
  ],
  // stylelint   -----settings end-----

  "editor.codeActionsOnSave": {
    "source.fixAll": true,
    // 文件保存时开启eslint自动修复程序
    "source.fixAll.eslint": true,
    // 文件保存时开启stylelint自动修复程序
    "source.fixAll.stylelint": true
  },
  "update.enableWindowsBackgroundUpdates": false,
  "update.mode": "none",
}

你可能感兴趣的:(工具,vscode,settings.json,setting)