Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 439 Bytes

README.md

File metadata and controls

25 lines (21 loc) · 439 Bytes

Prettier eRuby plugin

Overview

This plugin is designed to recognize html.erb files as html and format them as html. So it currently does not support formatting ruby code.

Installation & Configuration

yarn add -D prettier-eruby-plugin
{
  "plugins": ["prettier-plugin-eruby"],
  "overrides": [
    {
      "files": "*.html.erb",
      "options": {
        "parser": "eruby-parse"
      }
    }
  ]
}