change package managers

This commit is contained in:
azizziy
2025-12-27 09:32:01 +05:00
commit 05dc099df9
189 changed files with 13706 additions and 0 deletions

9
prettier.config.cjs Normal file
View File

@@ -0,0 +1,9 @@
/** @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) => {...}
};