-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.prettierrc.mjs
23 lines (22 loc) · 1.07 KB
/
.prettierrc.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// prettier.config.js, .prettierrc.js, prettier.config.mjs, or .prettierrc.mjs
/**
* @see https://prettier.io/docs/en/configuration.html
* @type {import("prettier").Config}
*/
const config = {
plugins: ['prettier-plugin-tailwindcss'],
trailingComma: 'es5', // Añadir coma al final de listas y objetos
tabWidth: 2, // Tamaño del tabulador
semi: true, // Usar punto y coma al final de las declaraciones
singleQuote: true, // Usar comillas simples en lugar de dobles
printWidth: 80, // Longitud máxima de línea
useTabs: true, // Usar espacios en lugar de tabs
bracketSpacing: true, // Espacio entre llaves en objetos
arrowParens: 'always', // Paréntesis en funciones flecha con un solo argumento
endOfLine: 'lf', // Usar LF para el final de línea
jsxSingleQuote: false, // Usar comillas dobles en JSX
proseWrap: 'preserve', // Mantener el formato original en Markdown
htmlWhitespaceSensitivity: 'css', // Sensibilidad al espacio en blanco en HTML
embeddedLanguageFormatting: 'auto', // Formatear automáticamente el código embebido
};
export default config;