Files
notesnook/apps/mobile/.prettierrc.js
2022-01-22 12:57:05 +05:00

14 lines
262 B
JavaScript

module.exports = {
arrowParens: 'avoid',
bracketSpacing: true,
jsxBracketSameLine: false,
jsxSingleQuote: false,
quoteProps: 'as-needed',
singleQuote: true,
semi: true,
printWidth: 100,
useTabs: false,
tabWidth: 2,
trailingComma: 'none'
};