blob: 1ea8990b21cc4ca7666f6611c9e8375d8b2832ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* @type {import("prettier").Config}
*/
export default {
semi: true,
tabWidth: 2,
useTabs: false,
printWidth: 80,
singleQuote: false,
arrowParens: "always",
trailingComma: "es5",
singleAttributePerLine: true,
};
|