Skip to content

Commit 51fee28

Browse files
authored
Disable ai in cursor and vscode (#368)
1 parent 481ab34 commit 51fee28

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

extension/.cursorignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*

extension/.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"chat.disableAIFeatures": true
3+
}

extension/README.md.args.mjs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,26 @@ yarn chain
3434
> in a second terminal window, 🛰 deploy your contract (locally):
3535
3636
\`\`\`sh
37-
cd <challenge_folder_name>
3837
yarn deploy
3938
\`\`\`
4039
4140
> in a third terminal window, start your 📱 frontend:
4241
4342
\`\`\`sh
44-
cd <challenge_folder_name>
4543
yarn start
4644
\`\`\`
4745
4846
📱 Open http://localhost:3000 to see the app.
4947
5048
> 👩‍💻 Rerun \`yarn deploy --reset\` whenever you want to deploy new contracts to the frontend, update your current contracts with changes, or re-deploy it to get a fresh contract address.
5149
52-
🔏 Now you are ready to edit your smart contract \`{mainContractName.sol}\` in \`packages/hardhat/contracts\`
50+
---
51+
52+
⚠️ We have disabled AI in Cursor and VSCode and highly suggest that you do not enable it so you can focus on the challenge, do everything by yourself, and hence better understand and remember things. If you are using another IDE, please disable AI yourself.
53+
54+
🔧 If you are a vibe-coder and don't care about understanding the syntax of the code used and just want to understand the general takeaways, you can re-enable AI by:
55+
- Cursor: remove \`*\` from \`.cursorignore\` file
56+
- VSCode: set \`chat.disableAIFeatures\` to \`false\` in \`.vscode/settings.json\` file
5357
5458
---
5559

0 commit comments

Comments
 (0)