mirror of
https://github.com/szimek/sharedrop.git
synced 2026-06-05 21:02:47 +08:00
14 lines
255 B
JavaScript
14 lines
255 B
JavaScript
// https://prettier.io/docs/en/options.html
|
|
|
|
module.exports = {
|
|
printWidth: 80,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: true,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
bracketSpacing: true,
|
|
jsxBracketSameLine: false,
|
|
arrowParens: 'always',
|
|
};
|