mirror of
https://github.com/MercuryWorkshop/anuraOS.git
synced 2025-09-04 17:19:24 +00:00
12 lines
162 B
JavaScript
12 lines
162 B
JavaScript
/**
|
|
* @type {import("prettier").Config}
|
|
*/
|
|
const config = {
|
|
trailingComma: "all",
|
|
useTabs: true,
|
|
semi: true,
|
|
singleQuote: false,
|
|
};
|
|
|
|
export default config;
|