mirror of
https://github.com/langgenius/dify-conversation.git
synced 2026-07-01 18:25:52 -04:00
14 lines
233 B
JavaScript
14 lines
233 B
JavaScript
const config = {
|
|
semi: false,
|
|
tabWidth: 2,
|
|
printWidth: 80,
|
|
singleQuote: true,
|
|
jsxSingleQuote: true,
|
|
trailingComma: 'none',
|
|
arrowParens: 'always',
|
|
endOfLine: 'auto',
|
|
noBracketSpacing: true
|
|
}
|
|
|
|
module.exports = config
|