mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
21 lines
476 B
JavaScript
21 lines
476 B
JavaScript
|
module.exports = {
|
||
|
arrowParens: 'always',
|
||
|
bracketSpacing: true,
|
||
|
endOfLine: 'lf',
|
||
|
htmlWhitespaceSensitivity: 'css',
|
||
|
insertPragma: false,
|
||
|
jsxBracketSameLine: false,
|
||
|
jsxSingleQuote: true,
|
||
|
printWidth: 121,
|
||
|
plugins: [require('prettier-plugin-tailwindcss')],
|
||
|
proseWrap: 'preserve',
|
||
|
quoteProps: 'as-needed',
|
||
|
requirePragma: false,
|
||
|
semi: true,
|
||
|
singleQuote: true,
|
||
|
tabWidth: 2,
|
||
|
trailingComma: 'es5',
|
||
|
useTabs: false,
|
||
|
vueIndentScriptAndStyle: false,
|
||
|
};
|