zoukankan      html  css  js  c++  java
  • VSCode拓展插件推荐

    大牛VSCode拓展插件推荐
     
    1、配置:个人的VSCode首选项配置(文件-首选项-设置)
     
     
    {
    "editor.tabSize": 2,
    "files.associations": {
    "*.vue": "vue"
    },
    "eslint.autoFixOnSave": true,
    "eslint.options": {
    "extensions": [
    ".js",
    ".vue"
    ]
    },
    "eslint.validate": [
    "javascript",
    "javascriptreact",
    "vue",
    "vue-html"
    ],
    "search.exclude": {
    "**/node_modules": true,
    "**/bower_components": true,
    "**/dist": true
    },
    "emmet.syntaxProfiles": {
    "javascript": "jsx",
    "vue": "html",
    "vue-html": "html"
    },
    "git.confirmSync": false,
    "window.zoomLevel": 0,
    "vsicons.projectDetection.autoReload": true,
    "typescript.check.tscVersion": false,
    "editor.renderWhitespace": "boundary",
    "editor.cursorBlinking": "smooth",
    "workbench.iconTheme": "vscode-great-icons",
    "editor.minimap.enabled": true,
    "editor.minimap.renderCharacters": false,
    "tslint.autoFixOnSave": true,
    "editor.fontFamily": "'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'",
    "beautify.tabSize": 2,
    "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
    "typescript.extension.sortImports.maxNamedImportsInSingleLine": 5,
    "typescript.extension.sortImports.omitSemicolon": true,
    "editor.codeLens": true,
    "editor.snippetSuggestions": "top",
    "react-native-storybooks.port": 6006
    }
    

      

    {
    "editor.tabSize": 2,
    "files.associations": {
    "*.vue": "vue"
    },
    "eslint.autoFixOnSave": true,
    "eslint.options": {
    "extensions": [
    ".js",
    ".vue"
    ]
    },
    "eslint.validate": [
    "javascript",
    "javascriptreact",
    "vue",
    "vue-html"
    ],
    "search.exclude": {
    "**/node_modules": true,
    "**/bower_components": true,
    "**/dist": true
    },
    "emmet.syntaxProfiles": {
    "javascript": "jsx",
    "vue": "html",
    "vue-html": "html"
    },
    "git.confirmSync": false,
    "window.zoomLevel": 0,
    "vsicons.projectDetection.autoReload": true,
    "typescript.check.tscVersion": false,
    "editor.renderWhitespace": "boundary",
    "editor.cursorBlinking": "smooth",
    "workbench.colorTheme": "Solarized Light",
    "workbench.iconTheme": "vscode-great-icons",
    "editor.minimap.enabled": true,
    "editor.minimap.renderCharacters": false,
    "tslint.autoFixOnSave": true,
    "editor.fontFamily": "'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'",
    "beautify.tabSize": 2,
    "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
    "typescript.extension.sortImports.maxNamedImportsInSingleLine": 5,
    "typescript.extension.sortImports.omitSemicolon": true,
    "editor.codeLens": true,
    "editor.snippetSuggestions": "top",
    "react-native-storybooks.port": 6006
    }
    2、设置中文
    安装中文语言

    打开vscode ,按快捷键“Ctrl+Shift+P”

    输入configure language,回车

    前端大牛的路上
  • 相关阅读:
    Android开发之LocationManager和定位
    Android开发之SmsManager和SmsMessage
    Android开发之三种动画
    Android开发之ActivityManager获取系统信息
    Android开发之TextView实现跑马灯效果
    Android开发之MD5加密
    linux服务之dns
    java使用Redis(六个类型)
    JedisConnectionException: Failed connecting to host localhost:6379
    下载安装Redis+使用
  • 原文地址:https://www.cnblogs.com/zoushuangyu/p/15402129.html
Copyright © 2011-2022 走看看