2023-05-18 11:09:31 -07:00
|
|
|
module.exports = {
|
2023-07-27 10:09:19 -04:00
|
|
|
plugins: ['prettier-plugin-tailwindcss'],
|
2023-05-18 11:09:31 -07:00
|
|
|
printWidth: 100,
|
2023-07-23 19:38:18 -04:00
|
|
|
tabWidth: 2,
|
2023-05-18 11:09:31 -07:00
|
|
|
useTabs: false,
|
|
|
|
semi: true,
|
|
|
|
singleQuote: true,
|
|
|
|
// bracketSpacing: false,
|
2023-07-14 09:36:49 -04:00
|
|
|
trailingComma: 'all',
|
2023-05-18 11:09:31 -07:00
|
|
|
arrowParens: 'always',
|
|
|
|
embeddedLanguageFormatting: 'auto',
|
|
|
|
insertPragma: false,
|
|
|
|
proseWrap: 'preserve',
|
|
|
|
quoteProps: 'as-needed',
|
|
|
|
requirePragma: false,
|
|
|
|
rangeStart: 0,
|
|
|
|
endOfLine: 'auto',
|
|
|
|
jsxBracketSameLine: false,
|
|
|
|
jsxSingleQuote: false,
|
|
|
|
};
|