@straw-hat/prettier-config
Version:
Prettier configuration
21 lines (20 loc) • 457 B
JavaScript
export default {
$schema: 'https://json.schemastore.org/prettierrc',
printWidth: 120,
tabWidth: 2,
useTabs: false,
semi: true,
singleQuote: true,
jsxSingleQuote: false,
trailingComma: 'all',
bracketSpacing: true,
bracketSameLine: false,
arrowParens: 'always',
requirePragma: false,
insertPragma: false,
proseWrap: 'preserve',
endOfLine: 'lf',
quoteProps: 'as-needed',
htmlWhitespaceSensitivity: 'strict',
plugins: [],
};