Files
sawyerhood__dev-browser/.prettierrc
Sawyer Hood 16d77681f3 Enhance dev-browser with linting and formatting tools
This commit introduces several development tools to improve code quality and maintainability within the dev-browser package. Key changes include:

- Addition of `husky` for managing Git hooks, ensuring that pre-commit checks are enforced.
- Integration of `lint-staged` to run linters on staged files, promoting consistent code style.
- Implementation of `prettier` for automatic code formatting, enhancing readability and reducing style discrepancies.
- Updates to the `package.json` and `bun.lock` files to include the new dependencies and scripts for formatting and linting.

These enhancements aim to streamline the development process and maintain high code quality standards across the project.
2025-12-03 09:51:35 -08:00

8 lines
107 B
Plaintext

{
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"printWidth": 100
}