Snippet

Prettier Configuration

Prettier configuration, comes with both JS and JSON variants.

Sunny Golovine


JSON Config:

json

{
  "arrowParens": "avoid",
  "semi": false
}

JS Config:

javascript

module.exports = {
  arrowParens: "avoid",
  semi: false,
}

Copyright 2023, Sunny Golovine

Version: 1.2.0 (5345ace)