Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 465 Bytes

README.md

File metadata and controls

37 lines (29 loc) · 465 Bytes

@excalidraw/prettier-config

Excalidraw's Prettier config.

Usage

Install

yarn add --dev @excalidraw/prettier-config prettier

Edit package.json

{
  // ...
  "prettier": "@excalidraw/prettier-config"
}

What you get

{
  "proseWrap": "never",
  "trailingComma": "all",
  "overrides": [
    {
      "files": ["*.json"],
      "options": {
        "printWidth": 256
      }
    }
  ]
}