Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(domain): move the database schema next to application business rules #66

Merged
merged 8 commits into from
May 22, 2024
Prev Previous commit
Next Next commit
build(app): fix lint errors in the ci
  • Loading branch information
tericcabrel committed May 21, 2024
commit 02cc6e6ea365bc175a7053a64f8d858b5f1672eb
4 changes: 2 additions & 2 deletions apps/core/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"ecmaVersion": 2023,
"sourceType": "module",
"project": [
"./apps/core/tsconfig.json",
"tsconfig.json"
"tsconfig.json",
"./apps/core/tsconfig.json"
]
}
}
4 changes: 2 additions & 2 deletions apps/functions/code-embed/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"ecmaVersion": 2023,
"sourceType": "module",
"project": [
"./apps/functions/code-embed/tsconfig.json",
"tsconfig.json"
"tsconfig.json",
"./apps/functions/code-embed/tsconfig.json"
]
}
}
4 changes: 2 additions & 2 deletions apps/web/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"ecmaVersion": 2021,
"sourceType": "module",
"project": [
"./apps/web/tsconfig.json",
"tsconfig.json"
"tsconfig.json",
"./apps/web/tsconfig.json"
]
},
"rules": {
Expand Down
4 changes: 2 additions & 2 deletions packages/embed/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"ecmaVersion": 2023,
"sourceType": "module",
"project": [
"./packages/embed/tsconfig.json",
"tsconfig.json"
"tsconfig.json",
"./packages/embed/tsconfig.json"
]
}
}
4 changes: 2 additions & 2 deletions packages/front/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"ecmaVersion": 2023,
"sourceType": "module",
"project": [
"./packages/logger/tsconfig.json",
"tsconfig.json"
"tsconfig.json",
"./packages/logger/tsconfig.json"
]
}
}
4 changes: 2 additions & 2 deletions packages/logger/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"ecmaVersion": 2023,
"sourceType": "module",
"project": [
"./packages/logger/tsconfig.json",
"tsconfig.json"
"tsconfig.json",
"./packages/logger/tsconfig.json"
]
}
}
4 changes: 2 additions & 2 deletions packages/utils/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"ecmaVersion": 2023,
"sourceType": "module",
"project": [
"./packages/utils/tsconfig.json",
"tsconfig.json"
"tsconfig.json",
"./packages/utils/tsconfig.json"
]
}
}