mirror of
https://github.com/leanprover/lean4.git
synced 2026-03-17 10:24:07 +00:00
This PR replaces `lean.code-workspace` with standard `.vscode/` configuration files (`settings.json`, `tasks.json`, `extensions.json`). The workspace file required users to explicitly "Open Workspace from File" (and moreover gives a noisy prompt whether or not they want to open it), while `.vscode/` settings are picked up automatically when opening the folder. This became possible after #12652 reduced the workspace to a single folder. Also drops the `rewrap.wrappingColumn` markdown setting, as the Rewrap extension is no longer signed on the VS Code marketplace. 🤖 Prepared with Claude Code Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
295 B
JSON
13 lines
295 B
JSON
{
|
|
"files.insertFinalNewline": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
// These require the CMake Tools extension (ms-vscode.cmake-tools).
|
|
"cmake.buildDirectory": "${workspaceFolder}/build/release",
|
|
"cmake.generator": "Unix Makefiles",
|
|
"[lean4]": {
|
|
"editor.rulers": [
|
|
100
|
|
]
|
|
}
|
|
}
|