mirror of
https://github.com/SawyerHood/dev-browser.git
synced 2026-09-20 13:44:44 +08:00
16d77681f3
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.
8 lines
107 B
Plaintext
8 lines
107 B
Plaintext
{
|
|
"semi": true,
|
|
"singleQuote": false,
|
|
"tabWidth": 2,
|
|
"trailingComma": "es5",
|
|
"printWidth": 100
|
|
}
|