initial commit

This commit is contained in:
Karli
2025-09-18 19:02:11 +03:00
commit f8a7da141f
55 changed files with 8461 additions and 0 deletions

36
.prettierrc.js Normal file
View File

@@ -0,0 +1,36 @@
module.exports = {
useTabs: false,
tabWidth: 2,
singleQuote: false,
trailingComma: "all",
semi: true,
arrowParens: "always",
endOfLine: "lf",
overrides: [
{
files: ["*.ts"],
options: {
parser: "typescript",
},
},
{
files: ["*.tsx"],
options: {
parser: "typescript",
jsxSingleQuote: false,
}
},
{
files: ["*.scss"],
options: {
parser: "scss",
}
},
{
files: ["*.json"],
options: {
parser: "json",
},
},
],
};