美文网首页个人
个人vscode 插件

个人vscode 插件

作者: AAA前端 | 来源:发表于2019-10-25 13:23 被阅读0次

    微信小程序开发工具
    小程序开发助手
    Auto Close Tag
    Auto Import
    Auto Rename Tag
    Babel JavaScript
    Beautify
    Beautify css/sass/scss/less
    Better Align
    Bracket Pair Colorizer
    Chinese(Simplified) Language Pack for Visual Studio Code
    Code Runner
    color Highlight
    Easy Sass
    ESLint
    File Peek
    filesize
    Find-Jump
    Git History
    GitHub
    gitignore
    HTML Snippets
    JavaScript(ES6) code snippets
    koroFileHeader
    Live Server
    Maintained Swift Development Environment
    minapp
    npm
    npm Intellisense
    open in browser
    Prettier - Code formatter
    Start git-bash
    Vetur
    view in Browser
    wechat-snippet
    wxml

    settings.json
    {
    "editor.fontSize": 14,
    "terminal.integrated.shell.windows": "C:\Program Files\Git\bin\bash.exe",
    "editor.tabSize": 2,
    "editor.formatOnType": true,
    "easysass.formats": [
    {
    "format": "expanded",
    "extension": ".wxss"
    }
    ],
    // "easysass.targetDir": "./css",
    "open-in-browser.default": "chrome",
    "emmet.includeLanguages": {
    "javascript": "javascriptreact",
    "wxml": "html"
    },
    "diffEditor.ignoreTrimWhitespace": false,
    "window.zoomLevel": 0,
    "workbench.colorTheme": "One Monokai",
    "editor.wordWrap": "on",
    "vetur.format.defaultFormatterOptions": {
    "prettier": {
    "semi": false,
    "singleQuote": true,
    }
    },
    "vetur.format.defaultFormatter.html": "js-beautify-html",
    "[javascript]": {
    "editor.defaultFormatter": "vscode.typescript-language-features"
    },
    "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
    "javascript.updateImportsOnFileMove.enabled": "always",
    "files.associations": {
    ".cjson": "jsonc",
    "
    .wxss": "css",
    "*.wxs": "javascript"
    },
    "minapp-vscode.disableAutoConfig": true,
    "typescript.updateImportsOnFileMove.enabled": "always",
    "fileheader.cursorMode": { // 函数注释
    "description": "",
    "param {type}": "",
    "return {type}": ""
    },
    "fileheader.configObj": {
    "autoAdd": false,
    "createHeader": false,
    "prohibitAutoAdd": [
    "json",
    "md"
    ] // 禁止.json .md文件,自动添加头部注释
    },
    "files.autoSave": "onFocusChange",
    "git.confirmSync": false,
    "editor.formatOnSave": true,
    "git.enableSmartCommit": true,
    "[css]": {
    "editor.defaultFormatter": "HookyQR.beautify"
    },
    "[vue]": {
    "editor.defaultFormatter": "octref.vetur"
    }
    }

    相关文章

      网友评论

        本文标题:个人vscode 插件

        本文链接:https://www.haomeiwen.com/subject/kfysvctx.html