Replies: 3 comments 11 replies
-
|
Use |
Beta Was this translation helpful? Give feedback.
-
|
I was not able to accomplish this with any combination of including files via However, I found a (hacky) solution to this where I first negated the exclusion of all dot files/folders, and then added back the paths I wanted to ignore. E.g. a testing project of mine is structured like this: and my which copies over my I have a suspicion there's an issue (or at least a misunderstanding from the user-side) with the quarto-cli/src/extension/template.ts Lines 37 to 41 in effe145 filters on exact string matches, which means a broad exclusion pattern like ".*" from kBuiltInExcludes will not be removed by a more specific include pattern like ".github/**" because they are not identical strings, leading to the broader exclusion taking precedence. |
Beta Was this translation helpful? Give feedback.
-
|
Using Quarto Wizard for Positron/VSCode, you can choose whatever is available inside the Quarto extension directory/repository, including hidden directories/files. See https://m.canouil.dev/quarto-wizard/getting-started/using-templates.html#installing-a-template |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
As mentioned here https://quarto.org/docs/extensions/starter-templates.html#creating-a-template all hidden files / directories are ignored.
It would be nice to have a way to allow certain hidden files / directories.
This would allow to also bundle common project setup with the template like lint config files or a
.devcontainerI tried using a
.quartoignoreor.gitignorelikebut this didn't help.
Beta Was this translation helpful? Give feedback.
All reactions