UNPKG

ccguard

Version:

Automated enforcement of net-negative LOC, complexity constraints, and quality standards for Claude code

15 lines 475 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DisableCommand = void 0; exports.DisableCommand = { name: 'off', description: 'Disable CCGuard LOC enforcement', execute: async (guardManager) => { await guardManager.disable(); return { decision: 'block', reason: 'CCGuard is now DISABLED. LOC changes will not be enforced.', }; } }; //# sourceMappingURL=DisableCommand.js.map