Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

[FEATURE] Ajouter un endpoint pour créer une entrée dans la base de journalisation (PIX-8516) #3

Merged
merged 10 commits into from
Aug 7, 2023
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
command: npm run lint
- run:
name: Test
command: npm run test
command: npm run test:ci
environment:
TEST_DATABASE_URL: postgres://circleci@localhost:5432/circleci

Expand Down
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
"project": "./tsconfig.json"
},
"rules": {
"comma-dangle": ["error", "only-multiline"],
"object-curly-spacing": ["error", "always"],
"quotes": [
"error",
"single",
Expand All @@ -18,6 +20,7 @@
"allowTemplateLiterals": true
}
],
"semi": ["error", "always"],
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/strict-boolean-expressions": [
"error",
Expand Down