UNPKG

@o3r/rules-engine

Version:

This module provides a rule engine that can be executed on your Otter application to customize your application (translations, placeholders and configs) based on a json file generated by your CMS.

30 lines (29 loc) 764 B
{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "NgGenerateEnableRuleSetSchematicsSchema", "title": "Generate rules-engine to component", "description": "Generate the code to enable rules-engine on a component", "properties": { "projectName": { "type": "string", "description": "Project name", "$default": { "$source": "projectName" }, "alias": "project" }, "path": { "type": "string", "description": "Path to the component" }, "skipLinter": { "type": "boolean", "description": "Skip the linter process which includes EsLint and EditorConfig rules applying", "default": false } }, "additionalProperties": true, "required": [ "path" ] }