Files
gastro-bot/prettier.config.cjs
Samandar Turgunboyev a5b46a9f26 init create-fias
2025-12-12 11:21:30 +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) => {...}
};