2025-05-31 20:03:56 -06:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see https://prettier.io/docs/configuration
|
|
|
|
|
* @type {import("prettier").Config}
|
|
|
|
|
*/
|
|
|
|
|
const config = {
|
|
|
|
|
trailingComma: "es5",
|
|
|
|
|
useTabs: false,
|
|
|
|
|
bracketSpacing: true,
|
|
|
|
|
objectWrap: "preserve",
|
2025-11-30 15:35:18 -07:00
|
|
|
tabWidth: 2,
|
|
|
|
|
semi: true,
|
|
|
|
|
singleQuote: false,
|
2025-05-31 20:03:56 -06:00
|
|
|
bracketSameLine: true,
|
|
|
|
|
arrowParens: "always",
|
2025-11-30 15:35:18 -07:00
|
|
|
endOfLine: "lf"
|
2025-05-31 20:03:56 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
module.exports = config
|