armcord/prettier.config.js
2024-08-20 16:41:16 -04:00

17 lines
355 B
JavaScript

// @ts-check
/** @type {import("prettier").Config} */
const config = {
printWidth: 120,
tabWidth: 4,
useTabs: false,
semi: true,
singleQuote: false,
quoteProps: "as-needed",
jsxSingleQuote: false,
trailingComma: "none",
bracketSpacing: false,
arrowParens: "always",
endOfLine: "auto"
};
export default config;