mirror of
https://github.com/trycua/computer.git
synced 2025-12-31 10:29:59 -06:00
- Remove per-package Black, Ruff, and MyPy settings in individual pyproject.toml files - Centralize Ruff configuration in root pyproject.toml under [tool.ruff.lint] with selected ignores - Add Prettier setup and usage instructions to Development.md - Include pnpm install instructions for JS/TS dependencies - Ensure pre-commit hooks enforce Python and JS/TS formatting consistently
10 lines
240 B
JSON
10 lines
240 B
JSON
{
|
|
"scripts": {
|
|
"prettier:check": "prettier --check '**/*.{ts,tsx,js,jsx,json,md,yaml,yml}'",
|
|
"prettier:format": "prettier --write '**/*.{ts,tsx,js,jsx,json,md,yaml,yml}'"
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^3.6.2"
|
|
}
|
|
}
|