lukasz-wronski / vscode-ftp-sync

Ftp Sync plugin for Visual Studio Code
https://marketplace.visualstudio.com/items/lukasz-wronski.ftp-sync
320 stars 85 forks source link

Exclude folder and allow manual upload #316

Open webmasterpf opened 4 years ago

webmasterpf commented 4 years ago

Hello,

I achieve to exclude folder from ftp auto sync with:

"ignore": [
        "/sass/*",
        "/node_modules/*",
        "\\.vscode",
        "\\.git",
        "\\.DS_Store"
    ],

But I would to keep ability to manuel / individual upload those of these files, like scss ones. How can I do this ?

Thanks