17 lines
784 B
TypeScript
17 lines
784 B
TypeScript
/**
|
|
* 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
|
|
*/
|
|
export { BashSafetyHook, createBashSafetyHook, } from './bash-safety.js';
|
|
export type { BashSafetyResult, CommandRisk, } from './bash-safety.js';
|
|
export { FileOrganizationHook, createFileOrganizationHook, } from './file-organization.js';
|
|
export type { FileOrganizationResult, FormatterRecommendation, LinterRecommendation, OrganizationIssue, } from './file-organization.js';
|
|
export { GitCommitHook, createGitCommitHook, } from './git-commit.js';
|
|
export type { GitCommitResult, CommitType, CommitValidationIssue, } from './git-commit.js';
|
|
//# sourceMappingURL=index.d.ts.map
|