mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 11:16:31 +00:00
c51cb9b4a5
- Updated coderule.mdc to emphasize readability, meaningful comments, and maintainability. - Revised testing.mdc to set a 75% coverage threshold for business logic and clarified expected results requirements. - Improved clarity in git-workflow.mdc regarding commit message formatting and length. - Added completeness audit requirements in research steps and quality checklists to ensure thoroughness in test specifications. Made-with: Cursor
10 lines
496 B
Plaintext
10 lines
496 B
Plaintext
---
|
|
description: Rules for installation and provisioning scripts
|
|
globs: scripts/**/*.sh
|
|
alwaysApply: false
|
|
---
|
|
|
|
# Automation Scripts
|
|
|
|
- Automate everything that can be automated. If a dependency can be downloaded and installed, do it automatically — never require the user to manually download and set up prerequisites.
|
|
- Use sensible defaults for paths and configuration (e.g. `/opt/` for system-wide tools). Allow overrides via environment variables for users who need non-standard locations. |