mirror of
https://github.com/MercuryWorkshop/scramjet.git
synced 2025-05-14 06:50:01 -04:00
11 lines
162 B
JavaScript
11 lines
162 B
JavaScript
/**
|
|
* @type {import("prettier").Config}
|
|
*/
|
|
const config = {
|
|
trailingComma: "es6",
|
|
useTabs: true,
|
|
semi: true,
|
|
singleQuote: false,
|
|
};
|
|
|
|
export default config;
|