// https://prettier.io/docs/en/options.html

module.exports = {
  // Enables semicolons at the end of statements
  semi: true,
  // Formats strings with single quotes ('') instead of quotes ("")
  singleQuote: true,
  // Adds a trailing comma at the end of all lists (including function arguments)
  trailingComma: 'all',
};