VSCode 에서 VUE 코드 포맷 설정

VSCode 에서 VUE 코드 포맷 설정
{
    "terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
    "gitlens.advanced.messages": {
        "suppressShowKeyBindingsNotice": true
    },
    //        
    "editor.minimap.enabled": true,
    // JavaScript    
    "vetur.format.defaultFormatter.html": "js-beautify-html",
    "vetur.format.defaultFormatter.js": "vscode-typescript",
    "vetur.format.defaultFormatter.ts": "vscode-typescript",
    "vetur.format.defaultFormatter.css": "prettier",
    //   tab      
    "prettier.tabWidth": 2,
    //           
    "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
    "typescript.format.insertSpaceBeforeFunctionParenthesis": true,
    //           
    "javascript.format.insertSpaceAfterConstructor": true,
    "typescript.format.insertSpaceAfterConstructor": true,
    //           
    "search.exclude": {
        "**/node_modules": true,
        "**/bower_components": true,
        "**/target": true,
        "**/logs": true
    },
    //   tab      
    "editor.tabSize": 2,
    //        import    
    "javascript.updateImportsOnFileMove.enabled": "always",
    "terminal.integrated.rendererType": "dom",
	//               
    "eslint.autoFixOnSave": true,
    // eslint       
    "eslint.validate": [
        "javascript",
        "javascriptreact",
        {
            "language": "vue",
            "autoFix": true
        }
    ],
    // eslint       
    "eslint.options": {
        "extensions": [".js", ".vue"]
    },
    //       
    "editor.quickSuggestions": {
        "other": true,
        "comments": true,
        "strings": true
    },
    //         
    "files.autoGuessEncoding": true,
    //                
    "workbench.startupEditor": "newUntitledFile",
    // elementUI      
    "element-helper.version": "2.4"
}

좋은 웹페이지 즐겨찾기