Skip to content

Instantly share code, notes, and snippets.

View dcd-arnold's full-sized avatar
🚲
bike.center

Arnold dcd-arnold

🚲
bike.center
View GitHub Profile
@dcd-arnold
dcd-arnold / tasks.json
Last active August 17, 2023 05:29
VSCode ShellCheck AutoFix Task
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "ShellCheck AutoFix",
"type": "shell",
"command": "shellcheck -f diff --enable=all ${relativeFile} | patch --strip=1 --directory='${fileWorkspaceFolder}'",
"problemMatcher": [],