Skip to content

Commit 5f091d3

Browse files
authored
Merge pull request #46 from Pfed-prog/cohort-2
linted the files and fixed lint highlighted errors
2 parents c649545 + c1dacae commit 5f091d3

27 files changed

+1362
-1669
lines changed

.eslintrc.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,5 @@
99
"parser": "@typescript-eslint/parser",
1010
"plugins": ["@typescript-eslint"],
1111
"root": true,
12-
"rules": {
13-
"no-unused-vars": "off",
14-
"@typescript-eslint/no-unused-vars": "error"
15-
}
12+
"rules": {}
1613
}

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
CHANGELOG.md
22
pnpm-lock.yaml
33
node_modules
4+
package-lock.json

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ services:
33
image: mongo:latest
44
container_name: pldg-mongodb
55
ports:
6-
- "27017:27017"
6+
- '27017:27017'
77
volumes:
88
- mongodb_data:/data/db
99
environment:
@@ -13,7 +13,7 @@ services:
1313
networks:
1414
- pldg-network
1515
healthcheck:
16-
test: ["CMD", "mongo", "--eval", "db.adminCommand('ping')"]
16+
test: ['CMD', 'mongo', '--eval', "db.adminCommand('ping')"]
1717
interval: 10s
1818
timeout: 5s
1919
retries: 5

0 commit comments

Comments
 (0)