### Description I use the [Taskfile YAML schema with VS Code](https://taskfile.dev/integrations/#visual-studio-code) and found that it incorrectly reports `silent` as an invalid parameter for `defer` items (screenshot below). This is definitely [valid behavior that was recently implemented](https://github.com/go-task/task/pull/1879/files).  ### Version 3.41.0 ### Operating system Ubuntu 22.04.4 ### Experiments Enabled _No response_ ### Example Taskfile ```YAML version: '3' tasks: stoaferp-defer-things: cmds: - defer: echo "this will always execute" silent: true - exit 1 - echo "this will not execute" ```