agentsqripts
Version:
Comprehensive static code analysis toolkit for identifying technical debt, security vulnerabilities, performance issues, and code quality problems
17 lines (12 loc) • 678 B
Markdown
# lib Directory
This directory contains the core functionality of the npm module.
## Files:
- **index.js**: Aggregates and exports functionality from library files
- **formatString.js**: Simple string formatting function with single responsibility
- **formatString.test.js**: Test file co-located with the function it tests
- **utils/fileSystemUtils.js**: Provides directory traversal helpers like `walkDirectorySync` and exclusion logic
## Purpose:
- Centralize reusable functionality
- Provide a clean export interface for consumers
- Maintain separation of concerns with single responsibility per file
- Co-locate tests with the code they test for better maintainability