Files
cpost-qr-code/prettier.config.cjs
Samandar Turgunboyev 1f1aae0ab7 first commit
2025-10-13 14:14:32 +05:00

10 lines
367 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/** @type {import("prettier").Config} */
module.exports = {
semi: true, // Har satrda nuqta-vergul bolishi
singleQuote: true, // ' ' ishlatilsin, " " emas
trailingComma: 'all', // songgi vergullar qoyilsin
tabWidth: 2, // Indent 2 bolsin
bracketSpacing: true, // { a: 1 } ichida bosh joy qoldirsin
arrowParens: 'always', // (x) => {...}
};