17 lines
546 B
JavaScript
17 lines
546 B
JavaScript
/**
|
|
* V3 Safety Hooks - Index
|
|
*
|
|
* TypeScript conversions of V2 shell hooks for:
|
|
* - Bash command safety
|
|
* - File organization enforcement
|
|
* - Git commit formatting
|
|
*
|
|
* @module v3/shared/hooks/safety
|
|
*/
|
|
// Bash safety hook
|
|
export { BashSafetyHook, createBashSafetyHook, } from './bash-safety.js';
|
|
// File organization hook
|
|
export { FileOrganizationHook, createFileOrganizationHook, } from './file-organization.js';
|
|
// Git commit hook
|
|
export { GitCommitHook, createGitCommitHook, } from './git-commit.js';
|
|
//# sourceMappingURL=index.js.map
|