mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02:00

chore(prettier): add 'prettier-plugin-tailwindcss' plugin to prettier configuration chore(package.json): update eslint-plugin-import to version 2.27.5
20 lines
459 B
JavaScript
20 lines
459 B
JavaScript
module.exports = {
|
|
plugins: ['prettier-plugin-tailwindcss'],
|
|
printWidth: 100,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: true,
|
|
singleQuote: true,
|
|
// bracketSpacing: false,
|
|
trailingComma: 'all',
|
|
arrowParens: 'always',
|
|
embeddedLanguageFormatting: 'auto',
|
|
insertPragma: false,
|
|
proseWrap: 'preserve',
|
|
quoteProps: 'as-needed',
|
|
requirePragma: false,
|
|
rangeStart: 0,
|
|
endOfLine: 'auto',
|
|
jsxBracketSameLine: false,
|
|
jsxSingleQuote: false,
|
|
};
|