This commit is contained in:
2023-11-15 23:14:17 +03:00
commit 6f147ca8b7
16 changed files with 3465 additions and 0 deletions

13
.prettierrc.cjs Normal file
View File

@@ -0,0 +1,13 @@
module.exports = {
tabWidth: 4,
printWidth: 120,
useTabs: false,
semi: false,
singleQuote: true,
quoteProps: 'as-needed',
jsxSingleQuote: false,
trailingComma: 'all',
bracketSpacing: true,
arrowParens: 'always',
endOfLine: 'auto',
}