diff options
author | Albert Y <76888457+filterpaper@users.noreply.github.com> | 2022-08-29 00:59:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-28 09:59:07 -0700 |
commit | ef0c87c976ff298f2e34e417808ed816f7ecb0b5 (patch) | |
tree | 3aafdde3878158e5f295759e2c12e69bdd846b6c | |
parent | efdd4f4d50e09e0f71d09333d15acf197406a09c (diff) | |
download | qmk_firmware-ef0c87c976ff298f2e34e417808ed816f7ecb0b5.tar.gz qmk_firmware-ef0c87c976ff298f2e34e417808ed816f7ecb0b5.zip |
Exclude uf2 files in VS Code (#18186)
-rw-r--r-- | .vscode/settings.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index 5fedaf477b..76117e52e0 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -6,7 +6,8 @@ "files.exclude": { "**/.build": true, "**/*.hex": true, - "**/*.bin": true + "**/*.bin": true, + "**/*.uf2": true }, "files.associations": { "*.h": "c", |