### Install Dependencies Source: https://github.com/fedramp/rules/blob/main/tools/README.md Installs project dependencies using Bun. Run this command from the tools directory. ```bash bun install ``` -------------------------------- ### Install Git Hooks Source: https://github.com/fedramp/rules/blob/main/tools/README.md Installs Git hooks for the repository. This ensures checks are run before commits. ```bash bun run hooks:install ``` -------------------------------- ### Run Fix Commands with Arguments Source: https://github.com/fedramp/rules/blob/main/tools/README.md Examples of running specific fix commands with additional arguments for customization. Use these to apply targeted fixes to your rules. ```bash bun run fix:terms -- -comment bun run fix:ids -- --report ./id-report.json bun run fix:ids -- --output ./fedramp-consolidated-rules.fixed.json bun run fix:order -- --output ./fedramp-consolidated-rules.ordered.json bun run fix:related bun run fix:display-names ``` -------------------------------- ### Run Test Suite Source: https://github.com/fedramp/rules/blob/main/tools/README.md Executes the Bun test suite, covering various aspects of the rules dataset and tooling. This command is part of the full verification suite. ```bash bun run test ``` -------------------------------- ### Run Repository Checks Source: https://github.com/fedramp/rules/blob/main/README.md Execute the check command for the repository's tooling. This is typically used for validation and testing. ```bash bun run check ``` -------------------------------- ### Run Repository Fixes Source: https://github.com/fedramp/rules/blob/main/README.md Execute the fix command for the repository's tooling. This is used to automatically correct issues found during checks. ```bash bun run fix ``` -------------------------------- ### Apply Fixes with Comment Source: https://github.com/fedramp/rules/blob/main/tools/README.md Runs the fix script and adds a standard term-sync update comment when term changes are written. This is a variant of the primary 'fix' command. ```bash bun run fix -- -comment ``` -------------------------------- ### Run Type Checking Source: https://github.com/fedramp/rules/blob/main/tools/README.md Performs TypeScript type checking without emitting JavaScript files. This is a component of the full verification suite. ```bash bun run typecheck ``` -------------------------------- ### Apply Fixes with Specific Date Source: https://github.com/fedramp/rules/blob/main/tools/README.md Runs the fix script, overriding the date used in generated fix metadata. This is a variant of the primary 'fix' command. ```bash bun run fix -- --date 2026-05-04 ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.