From 86a7d7dbadb8f8aa25943dfb9dd8911d154f4278 Mon Sep 17 00:00:00 2001 From: ralphmcralph Date: Fri, 25 Apr 2025 10:23:37 +0200 Subject: [PATCH] Add .gitignore template for Solidity + Remix --- Solidity-Remix.gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Solidity-Remix.gitignore diff --git a/Solidity-Remix.gitignore b/Solidity-Remix.gitignore new file mode 100644 index 00000000..a49555a4 --- /dev/null +++ b/Solidity-Remix.gitignore @@ -0,0 +1,15 @@ +# Remix compiler artifacts +**/artifacts/ +**/artifacts/** + +# Remix plugin state folders +deps/ +states/ + +# Debug info +*.dbg.json +*.tsbuildinfo + +# Optional +.env +.env.local \ No newline at end of file