Index: frontend/node_modules/tailwindcss/prettier.config.js
===================================================================
--- frontend/node_modules/tailwindcss/prettier.config.js	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
+++ frontend/node_modules/tailwindcss/prettier.config.js	(revision 9af201e94b5a79beb92a30858fc54de4bc3b9449)
@@ -0,0 +1,19 @@
+module.exports = {
+  // These settings are duplicated in .editorconfig:
+  tabWidth: 2, // indent_size = 2
+  useTabs: false, // indent_style = space
+  endOfLine: 'lf', // end_of_line = lf
+  semi: false, // default: true
+  singleQuote: true, // default: false
+  printWidth: 100, // default: 80
+  trailingComma: 'es5',
+  bracketSpacing: true,
+  overrides: [
+    {
+      files: '*.js',
+      options: {
+        parser: 'flow',
+      },
+    },
+  ],
+}
