mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02:00
20 lines
463 B
JavaScript
20 lines
463 B
JavaScript
// v0.6.10
|
|
module.exports = {
|
|
tailwindConfig: './client/tailwind.config.cjs',
|
|
printWidth: 100,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: true,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
arrowParens: 'always',
|
|
embeddedLanguageFormatting: 'auto',
|
|
insertPragma: false,
|
|
proseWrap: 'preserve',
|
|
quoteProps: 'as-needed',
|
|
requirePragma: false,
|
|
rangeStart: 0,
|
|
endOfLine: 'auto',
|
|
jsxSingleQuote: false,
|
|
plugins: ['prettier-plugin-tailwindcss'],
|
|
};
|