trade-frontend/prettier.config.cjs
AzizbekFayziyev 75a1aacc91 finish
2025-06-02 11:40:07 +05:00

12 lines
232 B
JavaScript

/** @type {import("prettier").Config} */
module.exports = {
semi: true,
singleQuote: true,
trailingComma: 'all',
printWidth: 100,
tabWidth: 4,
useTabs: true,
bracketSpacing: true,
arrowParens: 'always',
endOfLine: 'lf',
};