chore: move app code into src dir

This commit is contained in:
Yordis Prieto
2024-05-13 16:17:12 -04:00
parent cd1cbe4c7e
commit 2e3c1a8a10
104 changed files with 518 additions and 480 deletions

View File

@@ -0,0 +1,10 @@
export default {
printWidth: 80,
tabWidth: 2,
useTabs: false,
semi: true,
singleQuote: false,
trailingComma: 'all',
bracketSpacing: true,
arrowParens: 'always',
};

View File

@@ -0,0 +1,10 @@
{
"name": "@zitadel/prettier-config",
"version": "0.1.0",
"description": "Prettier configuration",
"private": true,
"type": "module",
"exports": {
".": "./index.js"
}
}