diff --git a/.gitignore b/.gitignore index 2a5b7c2..965ae6d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,10 @@ target dist +# 编辑器配置文件 +.idea/ +.vscode/ + # 可执行文件 # * 🚩【2024-04-07 08:42:13】目前内置被忽略的CIN可执行文件,用于稳定的测试代码编写 executables/ diff --git a/.vscode/extensions.json b/.vscode/extensions.json deleted file mode 100644 index 50d6283..0000000 --- a/.vscode/extensions.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "recommendations": [ - "swellaby.vscode-rust-test-adapter", - "nyxiative.rust-and-friends", - "itsyaasir.rust-feature-toggler", - "rust-lang.rust-analyzer", - "aaron-bond.better-comments", - "laktak.hjson", - "tanh.hjson-formatter", - "pkief.material-icon-theme" - ] -} \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index dd63ce2..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - // 使用 IntelliSense 了解相关属性。 - // 悬停以查看现有属性的描述。 - // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "type": "lldb", - "request": "launch", - "name": "Debug级单元测试", - "cargo": { - "args": [ - "test", - "--no-run", - "--lib", - "--package=babel_nar" - ], - "filter": { - "name": "babel_nar", - "kind": "lib" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug可执行文件「CIN启动器」", - "cargo": { - "args": [ - "build", - "--bin=cin_launcher", - "--package=babel_nar" - ], - "filter": { - "name": "cin_launcher", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug级单元测试「CIN启动器」", - "cargo": { - "args": [ - "test", - "--no-run", - "--bin=cin_launcher", - "--package=babel_nar" - ], - "filter": { - "name": "cin_launcher", - "kind": "bin" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - } - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 1428978..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "rust-analyzer.cargo.features": "all", - "editor.formatOnSave": true, - "cSpell.words": [ - "Addrs", - "boardcaster", - "canonicalize", - "clearscreen", - "confy", - "cxin", - "deser", - "Errno", - "hasher", - "hjson", - "Nalifier", - "nanos", - "openjunars", - "rfind", - "runpy", - "setopname", - "thiserror", - "traceback", - "tstate", - "whatwarmer" - ], - "rust-analyzer.linkedProjects": [ - ".\\Cargo.toml", - // ".\\Cargo.toml" - ], -} \ No newline at end of file