✅ Prettier config (.prettierrc) added to all 3 repos - Consistent formatting: semicolons, single quotes, 100 char width - Added format/format:check scripts to all package.json - Added prettier devDependency ✅ Bundle size limits enforcement - Added .bundlesizerc.json to all 3 dashboards - Configured limits: _app (150kb), main (50kb), webpack (50kb), framework (100kb) - Added bundlesize package and size:check script ✅ Test coverage with 80% thresholds - Added coverage config to all dashboard vitest configs - Enforces minimum coverage on branches, functions, lines, statements - Generates text, json, and html reports ✅ TypeScript strict mode already enabled everywhere - All repos already using strict: true in tsconfig ✅ EditorConfig already present in MindLyst
12 lines
199 B
Plaintext
12 lines
199 B
Plaintext
{
|
|
"semi": true,
|
|
"trailingComma": "es5",
|
|
"singleQuote": true,
|
|
"printWidth": 100,
|
|
"tabWidth": 2,
|
|
"useTabs": false,
|
|
"bracketSpacing": true,
|
|
"arrowParens": "avoid",
|
|
"endOfLine": "lf"
|
|
}
|