Files
ui/prettier.config.js
r1oga a70fa81c18 chore: format (prettier) (#39)
* chore: add `prettier`

* chore: format
2022-10-20 12:32:58 +08:00

19 lines
405 B
JavaScript

module.exports = {
arrowParens: 'avoid',
bracketSameLine: true,
bracketSpacing: true,
embeddedLanguageFormatting: 'auto',
endOfLine: 'lf',
htmlWhitespaceSensitivity: 'css',
insertPragma: false,
jsxSingleQuote: false,
printWidth: 100,
proseWrap: 'preserve',
quoteProps: 'as-needed',
requirePragma: false,
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: 'es5',
};