mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
* ✨ v0.7.5-rc2
* docs: update README
* refactor(settings): Update rememberForkOption default value
* a11y: proper screen reader announcements for content blocks
* Update version to 0.7.423 in package-lock.json and packages/data-provider/package.json
* chore: rename rememberForkOption -> rememberDefaultFork to apply new default value
* fix: headlessui menu stealing focus from Settings Dialog when pressing Enter
20 lines
466 B
JavaScript
20 lines
466 B
JavaScript
// v0.7.5-rc2
|
|
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'],
|
|
};
|