惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

量子位
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
G
Google Developers Blog
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
IT之家
IT之家
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
博客园 - Franky
U
Unit 42
Security Archives - TechRepublic
Security Archives - TechRepublic
C
Cisco Blogs
S
Schneier on Security
T
Threatpost
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
The Cloudflare Blog
博客园 - 聂微东
C
Cybersecurity and Infrastructure Security Agency CISA
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Blog — PlanetScale
Blog — PlanetScale
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Engineering at Meta
Engineering at Meta
M
MIT News - Artificial intelligence
aimingoo的专栏
aimingoo的专栏
博客园 - 叶小钗
Cisco Talos Blog
Cisco Talos Blog
P
Palo Alto Networks Blog
MongoDB | Blog
MongoDB | Blog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
V
V2EX
L
Lohrmann on Cybersecurity
Latest news
Latest news
小众软件
小众软件
有赞技术团队
有赞技术团队
Know Your Adversary
Know Your Adversary
Simon Willison's Weblog
Simon Willison's Weblog
B
Blog
雷峰网
雷峰网
K
Kaspersky official blog
美团技术团队
D
Darknet – Hacking Tools, Hacker News & Cyber Security
C
Check Point Blog
Recorded Future
Recorded Future
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
H
Help Net Security

博客园 - 华腾智算

子系统框架存档20260717 响应式后台管理系统 smart-water 融合多端协同总体架构设计方案 现代前端架构的核心思想 极简设计框架 跨平台弹性栅格理念设计 多端统一设计理念 一套规则,多端伸缩的UI设计理念 现代栅格设计之一 设计中的栅格系统 智慧水利顶层设计之何为“水利矩阵”与“数字孪生” 从古典Web到AI原生超级应用:团队学习路线与未来架构蓝图 最新架构设计 前端代码规范 v1.0 树型菜单全功能代码 最终最佳实践操作文档:统信UOS VSCode 全栈开发环境配置(基于 Chromium 浏览器) vscode-setting.json配置 VSCode 全栈开发环境初始化设置与跨平台配置指南(Windows/macOS 通用) VScode完整的跨平台适配方案 数字孪生破局之道 完整的GLFW应用程序示例 雏形 程序方向 web三维 第一步,第一行,开始 绘制三角形 明确目标 从文本文件加载指令到模拟内存中,并显示前11个内存单元的内容 使用Python的pydub库播放音乐并打印二进制数据 python的音频处理 python加密与解密 mainwindows.cpp 十进制数213转换为二进制数的完整过程,使用除2取余法(也称为“重复除法法”) 二进制数 \((-1101.101)_2\) 转换为十进制数 - 华腾智算
完整的跨平台 settings.json(飞雪飘鸿优化版)
华腾智算 · 2026-03-13 · via 博客园 - 华腾智算

{
// ==================== 全局设置(所有平台通用) ====================
"window.zoomLevel": 1,
"workbench.colorTheme": "Default Dark Modern",
"workbench.preferredDarkColorTheme": "Default Dark Modern",
"window.autoDetectColorScheme": false,
"workbench.iconTheme": "material-icon-theme",
"editor.fontSize": 14,
"editor.fontFamily": "'JetBrains Mono', 'Fira Code', '等线', monospace",
"editor.fontLigatures": true,
"editor.tabSize": 2,
"editor.lineHeight": 22,
"editor.letterSpacing": 0.5,
"editor.renderWhitespace": "selection",
"editor.renderControlCharacters": true,
"editor.cursorBlinking": "smooth",
"editor.tokenColorCustomizations": {
"comments": "#6a9955",
"strings": "#ce9178",
"keywords": "#569cd6",
"functions": "#dcdcaa"
},

// ==================== 分屏与窗口布局 ====================
"workbench.editor.restoreViewState": true,
"workbench.editor.showTabs": true,
"workbench.editor.tabSizing": "shrink",
"workbench.editor.splitInGroupLayout": "vertical",
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.enablePreview": false,
"workbench.layout.enabled": true,

// ==================== 文件操作与Git ====================
"files.autoSave": "onFocusChange",
"files.eol": "\n",
"git.autofetch": true,
"git.enableSmartCommit": true,
"git.confirmSync": false,
"git.ignoreMissingGitWarning": true,

// ==================== 代码格式化 (Prettier) ====================
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.semi": false,
"prettier.singleQuote": true,
"prettier.jsxSingleQuote": true,
"prettier.printWidth": 80,
"prettier.eslintIntegration": true,

// ==================== 代码校验 (ESLint) - 已修复废弃配置 ====================
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html"
],
"eslint.workingDirectories": [{ "mode": "auto" }],
// 已移除废弃的 eslint.autoFixOnSave,改用以下标准配置
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},

// ==================== 文件头注释 ====================
"fileheader.Author": "@Guojufeng",
"fileheader.LastModifiedBy": "@Guojufeng",

// ==================== Emmet 设置 ====================
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"wxml": "html",
"javascript": "javascriptreact",
"vue-html": "html",
"vue": "html"
},

// ==================== Vue 相关设置(Volar兼容) ====================
"vue.server.hybridMode": false, // 解决 Linux 下 Volar 兼容性问题
"vue.complete.casing": ["camel", "pascal"], // 组件命名提示
"vetur.format.defaultFormatter.js": "vscode-typescript", // 保留 Vetur 配置(兼容 Vue 2)
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": "force-aligned"
},
"prettier": {
"semi": false,
"singleQuote": true
}
},

// ==================== 浏览器与预览 ====================
"view-in-browser.customBrowser": "chrome",
"open-in-browser.default": "chrome",
// Live Server 配置 - 已修复 root 路径问题(留空表示使用工作区根目录)
"liveServer.settings.root": "",
"liveServer.settings.ChromeDebuggingAttachment": false,

// ==================== 资源管理器 ====================
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"explorer.compactFolders": false,

// ==================== 扩展配置 ====================
"files.associations": {
"*.cjson": "jsonc",
"*.wxss": "css",
"*.wxs": "javascript"
},
"minapp-vscode.disableAutoConfig": true,
"python.jediEnabled": false,
"breadcrumbs.enabled": true,
"beautify.language": {
"js": {
"type": ["javascript", "json"],
"filename": [".eslintrc", ".jsbeautifyrc"]
},
"css": ["css", "scss"],
"html": ["htm", "html", "vue"]
},

// ==================== 原有特定插件保留 ====================
"fittencode.languagePreference.displayPreference": "zh-cn",
"fittencode.languagePreference.commentPreference": "zh-cn",

// ==================== 其他 ====================
"security.workspace.trust.untrustedFiles": "open",
"extensions.ignoreRecommendations": false,
"extensions.autoUpdate": "onlyEnabledExtensions",
"update.mode": "none",

// ==================== 平台特定设置(跨平台适配)====================
// 这些设置会根据操作系统自动覆盖上面的全局设置 [citation:10]
"linux": {
// 统信UOS Linux 特定配置
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.fontFamily": "'Noto Mono', 'Droid Sans Mono', monospace",
// 统信UOS内置浏览器路径(请根据实际安装确认)
"browser.chrome.path": "/usr/bin/deepin-browser",
// Linux 下文件监控限制优化提示(见下方使用说明)
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/dist/**": true
}
},
"windows": {
// Windows 特定配置(跨设备同步时生效)
"terminal.integrated.defaultProfile.windows": "PowerShell",
"terminal.integrated.fontFamily": "Consolas, 'Courier New', monospace",
"browser.chrome.path": "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe"
},
"osx": {
// macOS 特定配置
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.fontFamily": "Menlo, Monaco, 'Courier New', monospace",
"browser.chrome.path": "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
}
}