module.exports = {1printWidth: 80, // Wrap lines at 80 characters2tabWidth: 2, // Use 2 spaces per indentation level3useTabs: false, // Use spaces instead of tabs4semi: true, // Add a semicolon at the end of every statement5singleQuote: true, // Use single quotes instead of double quotes6quoteProps: 'as-needed', // Only add quotes around object properties where required7jsxSingleQuote: false, // Use double quotes in JSX8trailingComma: 'es5', // Add trailing commas where valid in ES5 (objects, arrays, etc.)9bracketSpacing: true, // Print spaces between brackets in object literals10jsxBracketSameLine: false, // Put the `>` of a multi-line JSX element at the end of the last line11arrowParens: 'always', // Always include parentheses around arrow function arguments12htmlWhitespaceSensitivity: 'css', // Respect the default value of CSS display property13endOfLine: 'lf', // Use line feed only (\n) for newlines14embeddedLanguageFormatting: 'auto', // Format embedded code if Prettier can automatically identify it15proseWrap: 'preserve', // Do not wrap prose (including comments)16};171819