10 lines
169 B
JavaScript
10 lines
169 B
JavaScript
|
// @ts-check
|
||
|
|
||
|
/** @type {import("prettier").Config} */
|
||
|
export default {
|
||
|
bracketSpacing: true,
|
||
|
singleQuote: false,
|
||
|
arrowParens: "avoid",
|
||
|
trailingComma: "none"
|
||
|
};
|