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

* build/refactor: move lint/prettier packages to project root, install husky, add pre-commit hook * refactor: reformat files * build: put full eslintrc back with all rules
19 lines
416 B
JavaScript
19 lines
416 B
JavaScript
module.exports = {
|
|
printWidth: 100,
|
|
useTabs: false,
|
|
tabWidth: 2,
|
|
semi: true,
|
|
singleQuote: true,
|
|
// bracketSpacing: false,
|
|
trailingComma: 'none',
|
|
arrowParens: 'always',
|
|
embeddedLanguageFormatting: 'auto',
|
|
insertPragma: false,
|
|
proseWrap: 'preserve',
|
|
quoteProps: 'as-needed',
|
|
requirePragma: false,
|
|
rangeStart: 0,
|
|
endOfLine: 'auto',
|
|
jsxBracketSameLine: false,
|
|
jsxSingleQuote: false,
|
|
};
|