mirror of
https://github.com/bmad-code-org/BMAD-METHOD.git
synced 2026-09-19 08:11:52 +08:00
fa1637ee40
The root package.json, lockfile, .nvmrc, prettier ignore file and .npmignore are gone. docs-site has its own package.json and lockfile with the Astro, ESLint and Prettier dependencies, and its scripts run relative to that directory. tools/quality.py, both workflows and the docs all call npm inside docs-site. stamp_release.py stamps only the 29 skill manifests now; the version lives nowhere else on this branch. The tests for package stamping go with it.
24 lines
449 B
JavaScript
24 lines
449 B
JavaScript
export default {
|
|
$schema: 'https://json.schemastore.org/prettierrc',
|
|
printWidth: 140,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: true,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
bracketSpacing: true,
|
|
arrowParens: 'always',
|
|
endOfLine: 'lf',
|
|
proseWrap: 'preserve',
|
|
overrides: [
|
|
{
|
|
files: ['*.md'],
|
|
options: { proseWrap: 'preserve' },
|
|
},
|
|
{
|
|
files: ['*.cjs'],
|
|
options: { parser: 'babel' },
|
|
},
|
|
],
|
|
};
|