Skip to content

Instantly share code, notes, and snippets.

@floehopper
Created March 2, 2025 12:50
Show Gist options
  • Save floehopper/c17d7eef02037d045ed9eccf38864e88 to your computer and use it in GitHub Desktop.
Save floehopper/c17d7eef02037d045ed9eccf38864e88 to your computer and use it in GitHub Desktop.
Formatter suitable for zed editor using erb_lint gem
#!/usr/bin/env sh
bundle exec erb_lint --autocorrect --stdin $1 2>/dev/null | sed '1,/^================/d'
{
"languages": {
"ERB": {
"formatter": [
{
"external": {
"command": "$PATH_TO_FORMATTER/erb-lint-formatter",
"arguments": ["{buffer_path}"]
}
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment