style(framework): prettier-format DEFAULT_SEED_FILES (fix #575 CI format gate)
All checks were successful
ci/woodpecker/pr/ci Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful

DEFAULT_SEED_FILES exceeded print-width (100) after adding CONSTITUTION.md;
prettier@3.8.1 breaks it multiline. No behavior change.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-20 22:02:51 -05:00
parent 319e21ddc0
commit d3c5daf12d

View File

@@ -13,7 +13,12 @@ import { join } from 'node:path';
* This list must match the explicit seed loop in * This list must match the explicit seed loop in
* packages/mosaic/framework/install.sh. * packages/mosaic/framework/install.sh.
*/ */
export const DEFAULT_SEED_FILES = ['CONSTITUTION.md', 'AGENTS.md', 'STANDARDS.md', 'TOOLS.md'] as const; export const DEFAULT_SEED_FILES = [
'CONSTITUTION.md',
'AGENTS.md',
'STANDARDS.md',
'TOOLS.md',
] as const;
import type { ConfigService, ConfigSection, ResolvedConfig } from './config-service.js'; import type { ConfigService, ConfigSection, ResolvedConfig } from './config-service.js';
import type { SoulConfig, UserConfig, ToolsConfig, InstallAction } from '../types.js'; import type { SoulConfig, UserConfig, ToolsConfig, InstallAction } from '../types.js';
import { soulSchema, userSchema, toolsSchema } from './schemas.js'; import { soulSchema, userSchema, toolsSchema } from './schemas.js';