/** * Prettier config for automatic style formating. * Use plugin for your favorite editor: https://prettier.io/docs/en/editors.html. */ module.exports = { printWidth: 80, tabWidth: 2, useTabs: false, semi: false, singleQuote: true, trailingComma: 'all', bracketSpacing: true, arrowParens: 'avoid', }