mirror of
https://github.com/azaion/detections.git
synced 2026-04-22 07:06:32 +00:00
320683a1fd
- Revised coding rules to emphasize readability, meaningful comments, and maintainability. - Adjusted thresholds for test coverage on business logic from 80% to 75%, aligning with the new quality standards. - Enhanced guidelines for handling skipped tests, introducing classifications for legitimate and illegitimate skips. - Updated the requirements for test scenarios to ensure every test has a clear pass/fail criterion. 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. |