trade-backend/prettier.config.cjs

13 lines
232 B
JavaScript
Raw Permalink Normal View History

2025-07-01 21:07:46 +05:00
/** @type {import("prettier").Config} */
module.exports = {
semi: true,
singleQuote: true,
trailingComma: 'all',
printWidth: 100,
tabWidth: 4,
useTabs: true,
bracketSpacing: true,
arrowParens: 'always',
endOfLine: 'lf',
};