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