krivoox / draw-folder-structure

MIT License
13 stars 2 forks source link

Extension is not ingoing the excluded folders and files. #19

Open Ajay121code opened 2 weeks ago

Ajay121code commented 2 weeks ago

adding below is not working noting is ignored even after adding this in my setting.json file.

"draw.folder.structure.exclude": [ "/node_modules", "/.git", "/dist", "/.next", "**/out" ]

also tried in below format.

"draw.folder.structure.exclude": [
    "/node_modules",
    ".git",
    "/dist",
    ".next",
    "/out"
]
rrcaddick commented 1 week ago

Adding them like this should work

"draw.folder.structure.exclude": [ "**/__pycache__", "**/dist", "**/*.log", "**/*.tmp", "**/.git", "**/.github", ]