首页 > 其他分享 >VSCode环境

VSCode环境

时间:2024-09-28 17:13:29浏览次数:1  
标签:VSCode MySoftware 环境 defaultFormatter python vscode editor true

image


image


image


image


image


image


image


image


{
  "editor.minimap.enabled": false,
  "editor.fontSize": 18,
  "editor.tabSize": 2,
  "editor.suggestFontSize": 18,
  "editor.renderWhitespace": "none",
  "editor.suggestSelection": "first",
  "editor.detectIndentation": false,
  "editor.wordWrapColumn": 102400,
  "json.maxItemsComputed": 500000,
  "debug.console.fontSize": 18,
  "debug.onTaskErrors": "abort",
  "debug.console.wordWrap": false,
  "markdown.preview.fontSize": 18,
  "window.zoomLevel": 0,
  "window.commandCenter": false,
  "breadcrumbs.enabled": false,
  "search.showLineNumbers": true,
  "explorer.confirmDelete": false,
  "[cpp]": {
    "editor.defaultFormatter": "ms-vscode.cpptools"
  },
  // "[glsl]": {
  //   "editor.defaultFormatter": "xaver.clang-format"
  // },
  "[json]": {
    "editor.defaultFormatter": "vscode.json-language-features"
  },
  "[html]": {
    "editor.defaultFormatter": "vscode.html-language-features"
  },
  "[javascript]": {
    "editor.defaultFormatter": "vscode.typescript-language-features"
  },
  // "[typescript]": {
  //   "editor.defaultFormatter": "vscode.typescript-language-features"
  // },
  "[typescript]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[jsonc]": {
    "editor.defaultFormatter": "vscode.json-language-features"
  },
  "[vue]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[less]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[scss]": {
    "editor.defaultFormatter": "vscode.css-language-features"
  },
  "[css]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[java]": {
    "editor.defaultFormatter": "redhat.java"
  },
  "[scala]": {
    "editor.suggestSelection": "first",
    "editor.formatOnPaste": true,
    "editor.formatOnType": true
  },
  "[python]": {
    //"editor.defaultFormatter": "ms-python.python",
    "editor.defaultFormatter": "ms-python.autopep8",
    "editor.formatOnType": true
  },
  "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  "html.format.wrapLineLength": 102400,
  "html.format.wrapAttributes": "preserve",
  "terminal.integrated.fontSize": 18,
  //"terminal.integrated.shellArgs.windows": null,
  "terminal.integrated.profiles.windows": {
    "PowerShell -NoProfile": {
      "source": "PowerShell",
      "args": [
        "-NoProfile"
      ]
    },
    "CMD": {
      "path": "C:/WINDOWS/System32/cmd.exe",
      "args": []
    },
    "Git-Bash": {
      "path": "D:/MySoftware/PortableGit/bin/bash.exe",
      "args": []
    }
  },
  "terminal.integrated.defaultProfile.windows": "Command Prompt",
  "remote.SSH.remotePlatform": {
    "192.168.32.245": "linux",
    "192.168.32.111": "linux"
  },
  "python.languageServer": "Default",
  "python.autoComplete.typeshedPaths": [
    "D:/Program Files/Python310/Scripts",
    "D:/Program Files/Python310/Lib/site-packages"
  ],
  "python.defaultInterpreterPath": "D:/Program Files/Python310/python.exe",
  "python.pythonPath": "D:/Program Files/Python310/python.exe",
  //"python.formatting.provider": "autopep8",
  "autopep8.interpreter": [
    "D:/Program Files/Python310/python.exe"
  ],
  "autopep8.args": [
    "--aggressive",
    "--indent-size=2",
    "--max-line-length=12048",
    "--ignore=E402",
    "--exclude=venv",
    "--ignore-local-config",
    "--experimental"
  ],
  "flake8.interpreter": [
    "D:/Program Files/Python310/python.exe"
  ],
  "flake8.args": [
    "--indent-size=2",
    "--format=default",
    "--max-line-length=12048"
  ],
  "leek-fund.fundGroups": [
    "MyFund"
  ],
  
  "files.watcherExclude": {
    "**/.bloop": true,
    "**/.metals": true,
    "**/.ammonite": true
  },
  "files.exclude": {
    "**/.classpath": true,
    "**/.factorypath": true,
    "**/.project": true,
    "**/.settings": true,
    "**/.vs": true,
    "**/*.sln": true,
    "**/node_modules": true,
    "**/obj": true
  },
  "java.jdt.ls.java.home": "D:/MySoftware/Java/Java8X64/jdk-17.0.8",
  "java.configuration.runtimes": [
    {
      "name": "JavaSE-17",
      "path": "D:/MySoftware/Java/Java8X64/jdk-17.0.8",
    },
    {
      "name": "JavaSE-1.8",
      "path": "D:/MySoftware/Java/Java8X64/jdk1.8.0_181",
    }
  ],
  "java.configuration.maven.globalSettings": "D:/MySoftware/Java/Maven/conf/settings.xml",
  "java.configuration.maven.userSettings": "D:/MySoftware/Java/Maven/conf/settings.xml",
  "java.format.settings.url": "file:///D:/MySoftware/.vscode/eclipse-java-google-style.xml",
  "java.format.settings.profile": "GoogleStyle",
  "java.completion.importOrder": [
    "java",
    "javax",
    "com",
    "org"
  ],
  "redhat.telemetry.enabled": true,
  "prettier.printWidth": 120000,
  "maven.executable.path": "D:/MySoftware/Java/Maven/bin/mvn.cmd",
  "maven.settingsFile": "D:/MySoftware/Java/Maven/conf/settings.xml",
  "maven.executable.preferMavenWrapper": false,
  "javascript.updateImportsOnFileMove.enabled": "never",
  "xml.format.maxLineWidth": 102400,
  "workbench.editorAssociations": {
    "*.hex": "hexEditor.hexedit",
    "*.ini": "hexEditor.hexedit",
    "*.bin": "default"
  },
  "cmake.configureOnOpen": true,
  "cmake.cmakePath": "D:/MySoftware/CMake-3.24.2/bin/cmake.exe",
  "security.workspace.trust.untrustedFiles": "open",
  "git.openRepositoryInParentFolders": "never",
  "cmake.options.statusBarVisibility": "visible",
  "protoc": {
    "path": "D:/MySoftware/protoc-25.3-win64/bin/protoc.exe"
  },
  "hexeditor.columnWidth": 16,
  "hexeditor.showDecodedText": true,
  "hexeditor.defaultEndianness": "little",
  "hexeditor.inspectorType": "aside",
  "markdown-preview-enhanced.chromePath": "C:/Program Files/Google/Chrome/Application/chrome.exe",
  "markdown-preview-enhanced.enableExtendedTableSyntax": true,
  "markdown-preview-enhanced.enableHTML5Embed": true,
  "markdown-preview-enhanced.enableTypographer": true,
  "markdown-preview-enhanced.HTML5EmbedUseLinkSyntax": true,
  "markdown-preview-enhanced.pandocPath": "D:/MySoftware/pandoc-3.1.13/pandoc.exe",
  "markdown-preview-enhanced.pandocArguments": [
    "-H",
    "D:/Project/.vscode/head.tex"
  ],
  "cmake.showOptionsMovedNotification": false,
  "cmake.pinnedCommands": [
    "workbench.action.tasks.configureTaskRunner",
    "workbench.action.tasks.runTask"
  ],
  "editor.codeActionsOnSave": {
    
  },
}

标签:VSCode,MySoftware,环境,defaultFormatter,python,vscode,editor,true
From: https://www.cnblogs.com/gispathfinder/p/18438158

相关文章

  • 01. 感知层环境安装
    1.软件以及驱动的安装安装ZigBee无线网络节点开发平台IAREmbeddedWorkbench(简称EW)安装串口驱动(CH340芯片)。点击安装64位的。后续就可以使用串口对开发板进行调试。仿真器驱动程序(用来烧录代码)的安装。安装串口工具(XCOM)。2.IAR创建工程打开安装的IAR软件,点击......
  • ESP32+Thonny+Micropython开发环境搭建
    要在ESP32上搭建ThonnyIDE和MicroPython开发环境,可以按照以下步骤进行。这个过程用到Python语言编写代码,并直接在ESP32上运行。步骤1:准备硬件ESP32开发板-确保有一块ESP32芯片的开发板。USB数据线-用于将开发板与电脑连接。步骤2:安装ThonnyIDE......
  • Linux环境下git仓库的搭建
    (1).参考文献官网在线教程:https://git-scm.com/book/zh/v2官方网站:https://git-scm.com/(2).实验环境2核2GCentOS7.6.1810(3).安装git1)yum或dnf安装[root@VM-0-17-centos~]#dnf-yinstallgit-all2)源码安装安装依赖包[root@VM-0-17-centos~]#dnf......
  • Springboot轮滑竞赛管理系统gsj4e--(程序+源码+数据库+调试部署+开发环境)
    本系统(程序+源码+数据库+调试部署+开发环境)带论文文档1万字以上,文末可获取,系统界面在最后面。系统程序文件列表用户,比赛信息,比赛报名,比赛分类,成绩公布,裁判,评审打分,比赛通知,作品提交,奖项信息,比赛奖励开题报告内容一、课题名称轮滑竞赛管理系统开发与应用二、研......
  • Springboot旅游攻略平台2de9n(程序+源码+数据库+调试部署+开发环境)
    本系统(程序+源码+数据库+调试部署+开发环境)带论文文档1万字以上,文末可获取,系统界面在最后面。系统程序文件列表用户,旅游攻略,旅游景点,攻略分类,景点分类,问题分类,旅游问答开题报告内容一、项目背景随着旅游业的蓬勃发展,游客对于旅游信息的获取需求日益多样化、个性化......
  • Springboot路政管理信息系统v93sc(程序+源码+数据库+调试部署+开发环境)
    本系统(程序+源码+数据库+调试部署+开发环境)带论文文档1万字以上,文末可获取,系统界面在最后面。系统程序文件列表系统功能:用户,新闻公告,公路路产,路权维护,处罚信息,行驶信息,违规信息,违规类型开题报告内容一、课题名称路政管理信息系统设计与实现二、研究背景与意义随......
  • Springboot流浪动物救助管理系统y7274(程序+源码+数据库+调试部署+开发环境)
    本系统(程序+源码+数据库+调试部署+开发环境)带论文文档1万字以上,文末可获取,系统界面在最后面。系统程序文件列表系统功能:用户,动物信息,申领信息,回访信息,动物分类,撤销申领开题报告内容一、选题背景与意义面对日益增长的流浪动物问题,社会对于高效、有序的救助管理需求日......
  • Springboot列车调度信息系统的设计与实现4guf9程序+源码+数据库+调试部署+开发环境
    本系统(程序+源码+数据库+调试部署+开发环境)带论文文档1万字以上,文末可获取,系统界面在最后面。系统程序文件列表系统功能:旅客用户,列车调度员,列车信息,运输计划,行车调度图,票务信息开题报告内容一、研究背景与意义随着铁路交通的快速发展,列车调度作为铁路运输的核心环节......
  • Springboot乐享游乐场管理系统的设计与实现t4xv8--程序+源码+数据库+调试部署+开发环
    本系统(程序+源码+数据库+调试部署+开发环境)带论文文档1万字以上,文末可获取,系统界面在最后面。系统程序文件列表系统功能:员工,游乐设施,设施采购,设施维修,设施损坏,商店类型,商店信息开题报告内容一、研究背景与意义随着休闲娱乐产业的快速发展,游乐场作为家庭娱乐的重要......
  • ArcGIS Pro丨水文水资源、水生态与水环境领域应用
    ArcGISPro是一款集数据采集、处理、分析和可视化于一体的强大GIS工具,广泛应用于水文、水资源、水生态和水环境等领域。其全面的功能使得研究人员能够高效地处理各种水文和环境数据,从而为科学研究和决策支持提供强有力的技术保障。在水文分析方面,ArcGISPro利用数字高程模......