18 lines
362 B
JavaScript
18 lines
362 B
JavaScript
/**
|
|
* @see https://prettier.io/docs/configuration
|
|
* @type {import("prettier").Config}
|
|
*/
|
|
const config = {
|
|
printWidth: 120,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: false,
|
|
singleQuote: true,
|
|
quoteProps: "as-needed",
|
|
bracketSpacing: true,
|
|
arrowParens: "avoid",
|
|
htmlWhitespaceSensitivity: "ignore",
|
|
bracketSameLine: true,
|
|
};
|
|
|
|
export default config; |