Taskmaster Stubbing #2313

Merged
Shpigford merged 1 commits from taskmaster into main 2025-05-27 07:39:39 +08:00
Shpigford commented 2025-05-27 07:38:50 +08:00 (Migrated from github.com)

This is primarily about getting the .gitignore file setup so that Taskmaster doesn't take over the repo.

This is primarily about getting the `.gitignore` file setup so that Taskmaster doesn't take over the repo.
cursor[bot] (Migrated from github.com) reviewed 2025-05-27 07:40:44 +08:00
cursor[bot] (Migrated from github.com) left a comment

Bug: VSCode Ignore Rule Conflicts with Exceptions

Adding .vscode to .gitignore conflicts with existing rules that ignore .vscode/* but make exceptions for extensions.json and .code-snippets. The new rule overrides these exceptions, causing the entire .vscode directory to be ignored and changing the intended version control behavior for these files.

.gitignore#L88-L89

82aed5fdb9/.gitignore (L88-L89)

Fix in Cursor


Bug: Trailing Space in `.gitignore` Causes Incorrect Matching

The .gitignore pattern tasks/ contains a trailing space, causing it to incorrectly match directories named "tasks " instead of the intended "tasks" directory. This makes the pattern ineffective at ignoring the tasks directory.

.gitignore#L98-L99

82aed5fdb9/.gitignore (L98-L99)

Fix in Cursor


Was this report helpful? Give feedback by reacting with 👍 or 👎

<details open> <summary><h3>Bug: VSCode Ignore Rule Conflicts with Exceptions</h3></summary> Adding `.vscode` to `.gitignore` conflicts with existing rules that ignore `.vscode/*` but make exceptions for `extensions.json` and `.code-snippets`. The new rule overrides these exceptions, causing the entire `.vscode` directory to be ignored and changing the intended version control behavior for these files. <p></p> <details> <summary><code>.gitignore#L88-L89</code></summary> https://github.com/maybe-finance/maybe/blob/82aed5fdb9c0e8dc7e5598c6519888bba8ac8814/.gitignore#L88-L89 </details> <a href="https://cursor.com/open?data=eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6ImJ1Z2JvdC12MSJ9.eyJ0eXBlIjoiQlVHQk9UX0ZJWF9JTl9DVVJTT1IiLCJkYXRhIjp7ImJ1ZyI6ImV5SnNiMk5oZEdsdmJuTWlPbHQ3SW1acGJHVWlPaUl1WjJsMGFXZHViM0psSWl3aWMzUmhjblJNYVc1bElqbzRPQ3dpWlc1a1RHbHVaU0k2T0Rrc0ltTnZaR1ZNYVc1bGN5STZXMTE5WFN3aWFXUWlPaUpsWVRJM1ltWTNNUzFqTkdKbExUUTVPVFF0T0RSaE1pMWlZakZrWVRaaFlqTTJZekVpTENKa1pYTmpjbWx3ZEdsdmJpSTZJa0ZrWkdsdVp5QmdMblp6WTI5a1pXQWdkRzhnWUM1bmFYUnBaMjV2Y21WZ0lHTnZibVpzYVdOMGN5QjNhWFJvSUdWNGFYTjBhVzVuSUhKMWJHVnpJSFJvWVhRZ2FXZHViM0psSUdBdWRuTmpiMlJsTHlwZ0lHSjFkQ0J0WVd0bElHVjRZMlZ3ZEdsdmJuTWdabTl5SUdCbGVIUmxibk5wYjI1ekxtcHpiMjVnSUdGdVpDQmdMbU52WkdVdGMyNXBjSEJsZEhOZ0xpQlVhR1VnYm1WM0lISjFiR1VnYjNabGNuSnBaR1Z6SUhSb1pYTmxJR1Y0WTJWd2RHbHZibk1zSUdOaGRYTnBibWNnZEdobElHVnVkR2x5WlNCZ0xuWnpZMjlrWldBZ1pHbHlaV04wYjNKNUlIUnZJR0psSUdsbmJtOXlaV1FnWVc1a0lHTm9ZVzVuYVc1bklIUm9aU0JwYm5SbGJtUmxaQ0IyWlhKemFXOXVJR052Ym5SeWIyd2dZbVZvWVhacGIzSWdabTl5SUhSb1pYTmxJR1pwYkdWekxpSXNJbU52Ym1acFpHVnVZMlVpT2pBdU5Ea3lOamsxTlRZNE1qQXhORFUxTmpZc0ltTmhkR1ZuYjNKNUlqb2lURTlIU1VOZlFsVkhJbjAiLCJicmFuY2giOiJ0YXNrbWFzdGVyIn0sImlhdCI6MTc0ODMwMjg0NCwiZXhwIjoxNzQ4OTA3NjQ0fQ.i8RFRkzmpWyntM6Z2gvz7LABdYURDiJz1twZKJtbeg_eVEDOPnxIOwA-DOURxgUibsBLEoSzNnTHa0QkBnGt0jUlAVlmrU1ZN6LylMZJauoMAQvIDE6u_PZm1mJ3TOhI0JuF_9Pn6P0Dd5ORxe6uazb95kMoewnI2Gctzbv9fVhNhTMaWQ8yThn_Bnt-A0uTx3ZEpSGVyRHS61ldPIFXm1PO20Zl-7LeXZ0FfFCycfKRcauzYWDEdPcJYJQM8gbMu0lALttKVBua4A9UgUz8l5ODJx9AYuMUTM0r7qWZl2QDWB8O2LSsS3XX4zXL9YsgLVVnvrZ1ZGUY34jL1mi5pg">Fix in Cursor</a> </details> --- <details open> <summary><h3>Bug: Trailing Space in `.gitignore` Causes Incorrect Matching</h3></summary> The `.gitignore` pattern `tasks/ ` contains a trailing space, causing it to incorrectly match directories named "tasks " instead of the intended "tasks" directory. This makes the pattern ineffective at ignoring the `tasks` directory. <p></p> <details> <summary><code>.gitignore#L98-L99</code></summary> https://github.com/maybe-finance/maybe/blob/82aed5fdb9c0e8dc7e5598c6519888bba8ac8814/.gitignore#L98-L99 </details> <a href="https://cursor.com/open?data=eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6ImJ1Z2JvdC12MSJ9.eyJ0eXBlIjoiQlVHQk9UX0ZJWF9JTl9DVVJTT1IiLCJkYXRhIjp7ImJ1ZyI6ImV5SnNiMk5oZEdsdmJuTWlPbHQ3SW1acGJHVWlPaUl1WjJsMGFXZHViM0psSWl3aWMzUmhjblJNYVc1bElqbzVPQ3dpWlc1a1RHbHVaU0k2T1Rrc0ltTnZaR1ZNYVc1bGN5STZXMTE5WFN3aWFXUWlPaUl6T0dGa1pHRXlZUzB3TnpnNUxUUmpPREV0T0RBeE55MDVZVFpoTlRFMVlqUmpPRGtpTENKa1pYTmpjbWx3ZEdsdmJpSTZJbFJvWlNCZ0xtZHBkR2xuYm05eVpXQWdjR0YwZEdWeWJpQmdkR0Z6YTNNdklHQWdZMjl1ZEdGcGJuTWdZU0IwY21GcGJHbHVaeUJ6Y0dGalpTd2dZMkYxYzJsdVp5QnBkQ0IwYnlCcGJtTnZjbkpsWTNSc2VTQnRZWFJqYUNCa2FYSmxZM1J2Y21sbGN5QnVZVzFsWkNCY0luUmhjMnR6SUZ3aUlHbHVjM1JsWVdRZ2IyWWdkR2hsSUdsdWRHVnVaR1ZrSUZ3aWRHRnphM05jSWlCa2FYSmxZM1J2Y25rdUlGUm9hWE1nYldGclpYTWdkR2hsSUhCaGRIUmxjbTRnYVc1bFptWmxZM1JwZG1VZ1lYUWdhV2R1YjNKcGJtY2dkR2hsSUdCMFlYTnJjMkFnWkdseVpXTjBiM0o1TGlJc0ltTnZibVpwWkdWdVkyVWlPakF1TWpRNE16UXdOekkxTURVNU9UazBMQ0pqWVhSbFoyOXllU0k2SWt4UFIwbERYMEpWUnlKOSIsImJyYW5jaCI6InRhc2ttYXN0ZXIifSwiaWF0IjoxNzQ4MzAyODQ0LCJleHAiOjE3NDg5MDc2NDR9.Sk57aM6CsyHF-_GDX_-FfWYKM8VnUGxGzVmVjnGa9i-yAkz5eA9zNjUwh1__sfU4XyIzt8kzxOsZDoruunuTnzr_tAcpHDN1-0S8Cn56pDygaRyIlY2rHAHMuMF9Vfb21sU0A0VU6KpChWXLewZih5KBIVIPAZRdgdrK6Byz8xw8HN4uBms-ZQ5bUxenmfeR_GPoE7TopsZPjRTsO1ba-E_CcrW9YapHwVc-ylGS13aeqGvyRcuIlGPJZNBwV69vDB6mzz80YHvhegPHdQsBTYd3Al4yDaF7Y-P6UPIOXsNboocfdT_yGU_SoHFcr13UNnvLPN-y1hDx0IeRvPt9fw">Fix in Cursor</a> </details> --- _Was this report helpful? Give feedback by reacting with 👍 or 👎_
Sign in to join this conversation.