diff --git a/.vscode/launch.json b/.vscode/launch.json index 5fbf024f8..0ffd27bbb 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,11 +1,8 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { - "name": "Docker: Attach to Node", + "name": "Attach to Node in Docker", "type": "node", "request": "attach", "port": 9229, diff --git a/src/scripts/checkHeader.sh b/src/scripts/checkHeader.sh index aa6e80814..001b42ef0 100755 --- a/src/scripts/checkHeader.sh +++ b/src/scripts/checkHeader.sh @@ -14,6 +14,7 @@ FILES=$(git ls-files) FILES=$(echo "$FILES" | grep -v ".*\.md") FILES=$(echo "$FILES" | grep -v "\.editorconfig") FILES=$(echo "$FILES" | grep -v "\.gitattributes") +FILES=$(echo "$FILES" | grep -v ".vscode") FILES=$(echo "$FILES" | grep -v "package\.json") # Filter out generated files FILES=$(echo "$FILES" | grep -v "package-lock\.json")