20 lines
444 B
JavaScript
20 lines
444 B
JavaScript
/**
|
|
* @see https://prettier.io/docs/en/configuration.html
|
|
* @type {import("prettier").Config}
|
|
*/
|
|
export default {
|
|
printWidth: 100,
|
|
tabWidth: 4,
|
|
useTabs: false,
|
|
semi: true,
|
|
singleQuote: true,
|
|
quoteProps: 'as-needed',
|
|
jsxSingleQuote: false,
|
|
trailingComma: 'es5',
|
|
bracketSpacing: true,
|
|
jsxBracketSameLine: false,
|
|
arrowParens: 'always',
|
|
endOfLine: 'lf',
|
|
embeddedLanguageFormatting: 'auto',
|
|
};
|