Because the default aiExcludes setting covers all files and directories starting with a dot ., it causes issues when plan files should be read by Assistant.
Default setting:
"positron.assistant.aiExcludes": [
"**/.*"
]
Let's amend this to be less general. We do want to avoid files like .env and other sensitive files from automatically being read, but other files/directories starting with . are ones we likely do want to read. Like .github, .positai, etc.
Because the default aiExcludes setting covers all files and directories starting with a dot
., it causes issues when plan files should be read by Assistant.Default setting:
Let's amend this to be less general. We do want to avoid files like .env and other sensitive files from automatically being read, but other files/directories starting with
.are ones we likely do want to read. Like.github,.positai, etc.