// https://prettier.io/docs/en/options.html module.exports = { // Allow to parse .ts files and TS annotations parser: 'typescript', // 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', };