Open bravius opened 4 months ago
Is there a way to disable shield validation for both development and production modes?
I use JSON Schema for argument validation, so shield is redundant in my use case.
We recently added the shield: { dev: boolean } config, see https://github.com/brillout/telefunc/pull/111/files.
shield: { dev: boolean }
Maybe we can extend the config to be shield: false | { dev: boolean }.
shield: false | { dev: boolean }
PR welcome.
Is there a way to disable shield validation for both development and production modes?
I use JSON Schema for argument validation, so shield is redundant in my use case.