10 lines
179 B
JavaScript
10 lines
179 B
JavaScript
|
/** @type {import("prettier").Config} */
|
||
|
export default {
|
||
|
trailingComma: "all",
|
||
|
tabWidth: 2,
|
||
|
semi: true,
|
||
|
singleQuote: false,
|
||
|
printWidth: 120,
|
||
|
bracketSpacing: true,
|
||
|
};
|