Prettier settings tweaks

Prettier settings tweaks

Changes prettier.io/playground/ to have 4 space indentation, and parens in all arrow functions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Prettier settings tweaks",
  "description": "Changes prettier.io/playground/ to have 4 space indentation, and parens in all arrow functions.",
  "version": "0.5.0",
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://prettier.io/",
        "https://prettier.io/*"
      ],
      "js": [
        "PrettierSettingsTweaks.js"
      ]
    }
  ]
}