File tree 1 file changed +22
-0
lines changed
1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ # setup-macos Guidelines
2
+
3
+ ## Repository Purpose
4
+ Automated setup scripts for configuring macOS with common tools, languages, and settings.
5
+
6
+ ## Commands
7
+ - Run main setup: ` ./setup.sh `
8
+ - Run individual components: ` source ./languages/ruby ` or ` bash ./languages/node `
9
+ - Check script syntax: ` shellcheck setup.sh utils.sh languages/* package-managers/* settings/* `
10
+
11
+ ## Style Guidelines
12
+ - ** Shell** : Bash-compatible shell scripts
13
+ - ** Error Handling** : Use ` trap ` for cleanup and error reporting
14
+ - ** Functions** : Source common utilities from ` utils.sh `
15
+ - ** Formatting** : 2-space indentation, no trailing whitespace
16
+ - ** Naming** : Use lowercase with hyphens for files, lowercase with underscores for functions/variables
17
+ - ** Documentation** : Include comments for non-obvious operations
18
+ - ** Idempotence** : Scripts should be safe to run multiple times
19
+ - ** Security** : Validate user input, avoid eval, use quotes around variables
20
+
21
+ ## Testing
22
+ Test changes manually by running the affected script and verifying the expected outcome.
You can’t perform that action at this time.
0 commit comments