Files
DianZhanDemo/prettier-config/index.js

13 lines
236 B
JavaScript
Raw Normal View History

2025-12-11 02:09:07 +08:00
module.exports = {
semi: false,
singleQuote: true,
tabWidth: 2,
trailingComma: 'es5',
printWidth: 100,
arrowParens: 'avoid',
endOfLine: 'lf',
bracketSpacing: true,
jsxBracketSameLine: false,
proseWrap: 'preserve',
}