From 87904b7a07658b2033bbc92f8a0513e530378f65 Mon Sep 17 00:00:00 2001 From: Michael Kaplan Date: Mon, 20 Nov 2023 16:18:55 -0500 Subject: [PATCH] Remove VSCode settings file --- .gitignore | 7 ++++--- .vscode/settings.json | 25 ------------------------- 2 files changed, 4 insertions(+), 28 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index fc932e387..d35c69ab4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,11 @@ -# Ignore forge output files +# Forge output files out/ cache/ target/ Cargo.lock -# Example binary -blst_example +# IDE configurations +.vscode* # File generated by tests relayerConfig.json @@ -30,6 +30,7 @@ UniversalTeleporterMessengerContractAddress.txt docker-compose-test-local.yml docker-compose-run-local.yml +# Environment and configuration values .env # Ginkgo diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 99f58cab9..000000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "editor.tokenColorCustomizations": { - "textMateRules": [ - { - "scope": "googletest.failed", - "settings": { - "foreground": "#f00" - } - }, - { - "scope": "googletest.passed", - "settings": { - "foreground": "#0f0" - } - }, - { - "scope": "googletest.run", - "settings": { - "foreground": "#0f0" - } - } - ] - }, - "files.trimTrailingWhitespace": true -} \ No newline at end of file