neild3r / vscode-php-docblocker

Simple docblocker for php
MIT License
94 stars 31 forks source link

Make "Undocumented function" optional #139

Open nikitades opened 4 years ago

nikitades commented 4 years ago

Please make if depend on flag in settings. Not everyone needs this each time the comment block is generated.

Btw, brilliant extension!

Fenweldryn commented 3 years ago

Well, I'm looking for disabling it as well. Is there a way to get rid of it? Oficially or not

neild3r commented 3 years ago

You can modify the templates to remove it. There is nicer way coming soon similar to @tianyiw2013 implementation

PapsOu commented 3 years ago

Example configuration to remove message part :

{
    "php-docblocker.functionTemplate": {
        "extra": {},
        "param": {
            "gapBefore": false
        },
    },
}

Just remove the key "message" from the function template.