- Replace scattered .prettierignore files with a single root config - Add scripts/ci.js to orchestrate lint, format, typecheck, commitlint, and build - Simplify ci.yml to use ci.js and npm ci - Apply prettier formatting to docs, locales, and HTML files
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"cSpell.words": [
|
|
"contenteditable",
|
|
"deepseek",
|
|
"historychange",
|
|
"HITL",
|
|
"innerhtml",
|
|
"languagedetector",
|
|
"llms",
|
|
"magicui",
|
|
"npmmirror",
|
|
"onwarn",
|
|
"opensource",
|
|
"qwen",
|
|
"retryable",
|
|
"shadcn",
|
|
"sidepanel",
|
|
"statuschange",
|
|
"wouter"
|
|
],
|
|
"files.exclude": {
|
|
"packages/*/node_modules": true
|
|
},
|
|
"markdownlint.config": {
|
|
// Relaxed rules
|
|
"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,
|
|
"ol-prefix": false,
|
|
"no-duplicate-heading": false
|
|
},
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"js/ts.tsdk.path": "node_modules/typescript/lib",
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"typescript.enablePromptUseWorkspaceTsdk": true
|
|
}
|