Files
page-agent/.vscode/settings.json
T

25 lines
735 B
JSON
Raw Normal View History

2025-09-29 16:33:15 +08:00
{
2026-01-21 14:32:08 +08:00
"files.exclude": {
2026-02-12 17:23:35 +08:00
"packages/*/node_modules": true
2026-01-21 14:32:08 +08:00
},
2026-01-17 16:15:36 +08:00
"markdownlint.config": {
// Relaxed rules
2026-01-17 16:15:36 +08:00
"default": true,
"whitespace": false,
"line_length": false,
"ul-indent": false,
"no-inline-html": false,
"no-bare-urls": false,
"fenced-code-language": false,
"first-line-h1": false,
"block-spacing": false,
"blanks-around-lists": false,
2026-02-12 17:23:35 +08:00
"ol-prefix": false,
"no-duplicate-heading": false
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
2026-04-12 04:29:26 +08:00
"js/ts.tsdk.path": "node_modules/typescript/lib",
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true
2025-09-29 16:33:15 +08:00
}