@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
18 lines • 595 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const schema_1 = require("@sprucelabs/schema");
const lintFailedDefinition = (0, schema_1.buildErrorSchema)({
id: 'lintFailed',
name: 'Lint failed!',
description: 'When linting a file fails',
fields: {
pattern: {
type: 'text',
label: 'Pattern',
hint: 'The pattern used to match files relative to the root of the skill',
isRequired: true,
},
},
});
exports.default = lintFailedDefinition;
//# sourceMappingURL=lintFailed.builder.js.map
;