/* Prettier (javascript) config options. http://json.schemastore.org/prettierrc */ module.exports = { // Print semicolons semi: false, // Print trailing commas where valid in ES5 (objects, arrays, etc.) trailingComma: 'es5', // Include parentheses around a sole arrow function parameter arrowParens: 'always', // Use single quotes instead of double quotes singleQuote: true, }