mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 06:12:03 +00:00
- Introduced .prettierrc for consistent code formatting with specified rules. - Added .prettierignore to exclude unnecessary files from formatting. - Updated package.json to include Prettier and lint-staged as devDependencies. - Implemented GitHub Actions workflow for format checking on pull requests and pushes. - Created a Husky pre-commit hook to run lint-staged for automatic formatting. These changes enhance code quality and maintainability by enforcing consistent formatting across the codebase.
40 lines
364 B
Plaintext
40 lines
364 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
out/
|
|
.next/
|
|
.turbo/
|
|
release/
|
|
|
|
# Automaker
|
|
.automaker/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Lock files
|
|
package-lock.json
|
|
pnpm-lock.yaml
|
|
|
|
# Generated files
|
|
*.min.js
|
|
*.min.css
|
|
|
|
# Test artifacts
|
|
test-results/
|
|
coverage/
|
|
playwright-report/
|
|
blob-report/
|
|
|
|
# IDE/Editor
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Electron
|
|
dist-electron/
|
|
server-bundle/
|