From 13e8184be49dfe5dd4ffe3fd71b6b5b32763ad31 Mon Sep 17 00:00:00 2001 From: Rick Staa Date: Fri, 12 Apr 2024 16:48:42 +0200 Subject: [PATCH] docs: add vscode note to CONTRIBUTING.md This commit adds a reference to VScode and the Hardhat extension in the contribution guidelines. --- CONTRIBUTING.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e429f66c..f743c480 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -20,3 +20,7 @@ specifier is not provided. Prefer `external` to `public` if you know a function will only be called externally. If there is a possibility of a function being called internally as well as externally, the function should be `public`. `external` functions can be more efficient when a function parameter is a large array of data. + +## Development Environment + +For easy development, we recommend using [Visual Studio Code](https://code.visualstudio.com/) with the [Hardhat extension](https://hardhat.org/hardhat-vscode/docs/overview). This will provide you with syntax highlighting, code completion, debugging capabilities, and an easy-to-use test explorer.