vscode配置项

奎奎网络
2023-05-28 / 0 评论 / 9,331 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2023年07月28日,已超过512天没有更新,若内容或图片失效,请留言反馈。
{
    //........eslint.........
    "window.zoomLevel": 1,
    "eslint.validate": [
        "javascript",
        "javascriptreact",
        {
            "language": "html",
            "autoFix": true
        },
        {
            "language": "vue",
            "autoFix": true
        }
    ],
    "editor.codeActionsOnSave": {
        "source.fixAll.eslint": true,
        "source.fixAll": true
    },
    "explorer.confirmDelete": true,
    "git.enableSmartCommit": true,
    "vetur.format.options.tabSize": 2,
    "vetur.format.defaultFormatterOptions": {
        "prettyhtml": {
            "printWidth": 100,
            "singleQuote": true,
            "wrapAttributes": true,
            "sortAttributes": true
        },
        "prettier": {
            "semi": false, // 是否自动加分号
            "singleQuote": true, // 是否格式化为单引号
            // 禁止随时添加逗号
            "trailingComma": "none"
        }
    },
    "editor.tabSize": 2,
    "editor.wordWrap": "on",
    //........分割.........
    "editor.formatOnPaste": true,
    "liveServer.settings.donotShowInfoMsg": true,
    "workbench.iconTheme": "ayu",
    "workbench.colorTheme": "Monokai",
    // 下面老郑的
    // "explorer.confirmDelete": false,
    "editor.formatOnType": true,
    "editor.formatOnSave": true,
    // 上面这一个是自动保存文档
    // 下面这个是更换vs背景
    "files.autoSave": "afterDelay",
    "backgroundCover.imagePath": "d:\\Microsoft VS Code\\VScode图片备份\\src=http___pic.jj20.com_up_allimg_1113_061H0105942_20061G05942-6-1200.jpg&refer=http___pic.jj20.jpg",
    "backgroundCover.randomImageFolder": "d:\\Microsoft VS Code\\VScode图片备份",
    "backgroundCover.opacity": 0.5,
    "backgroundCover.autoStatus": true,
    "git.ignoreWindowsGit27Warning": true,
    "emmet.triggerExpansionOnTab": true,
    "bracketPairColorizer.depreciation-notice": false,
    "interview.updateNotification": 1647182601915,
    // 分割线
    // javaScript参数名称提示代码,提升js参数
    "javascript.inlayHints.parameterNames.enabled": "all",
    "javascript.inlayHints.variableTypes.enabled": false,
    // 分割线
    //翻译(英汉词典插件参数)
    "EnglishChineseDictionary.enableHover": false,
    "tabnine.experimentalAutoImports": true, //true为鼠标悬停显示翻译
    // 分割线
    // 分割线
    //formate: CSS/LESS/SCSS formatter插件样式:对齐配置
    "formate.enable": true,
    "formate.verticalAlignProperties": true, //true
    "formate.alignColon": true,
    "formate.additionalSpaces": 1,
    "workbench.sideBar.location": "right",
    "cSpell.languageSettings": [],
    "window.zoomLevel": 3,
    "editor.inlineSuggest.enabled": true,
    // 分割线
    // 分割线
}
53

最后更新时间:2023 年 07 月 28 日 20:00:34

评论 (0)

取消