Skip to content

Commit

Permalink
chore: Upgrading to latest nx
Browse files Browse the repository at this point in the history
  • Loading branch information
NickTsitlakidis committed Jun 4, 2024
1 parent be5b68c commit 396f245
Show file tree
Hide file tree
Showing 3 changed files with 188 additions and 177 deletions.
15 changes: 12 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@
},
{
"files": ["*.ts"],
"extends": ["plugin:@nx/typescript", "plugin:sonarjs/recommended", "plugin:perfectionist/recommended-natural"],
"extends": [
"plugin:@nx/typescript",
"plugin:sonarjs/recommended",
"plugin:perfectionist/recommended-natural"
],
"rules": {
"sonarjs/no-duplicate-string": "warn",
"perfectionist/sort-classes": [
Expand All @@ -44,13 +48,18 @@
"private-method"
]
}
]
],
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
},
{
"files": ["*.js", "*.jsx"],
"extends": ["plugin:@nx/javascript"],
"rules": {}
"rules": {
"@typescript-eslint/no-extra-semi": "error",
"no-extra-semi": "off"
}
},
{
"files": ["*.spec.ts", "*.spec.tsx", "*.spec.js", "*.spec.jsx"],
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
"@golevelup/ts-jest": "0.4.0",
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.2",
"@nx/eslint": "18.2.4",
"@nx/eslint-plugin": "18.2.4",
"@nx/jest": "18.2.4",
"@nx/js": "18.2.4",
"@nx/nest": "18.2.4",
"@nx/node": "18.2.4",
"@nx/webpack": "18.2.4",
"@nx/workspace": "18.2.4",
"@nx/eslint": "19.1.2",
"@nx/eslint-plugin": "19.1.2",
"@nx/jest": "19.1.2",
"@nx/js": "19.1.2",
"@nx/nest": "19.1.2",
"@nx/node": "19.1.2",
"@nx/webpack": "19.1.2",
"@nx/workspace": "19.1.2",
"@shelf/jest-mongodb": "4.2.0",
"@swc-node/register": "~1.8.0",
"@swc/core": "~1.3.85",
Expand All @@ -46,7 +46,7 @@
"husky": "^8.0.3",
"jest": "^29.4.1",
"jest-environment-node": "^29.4.1",
"nx": "18.2.4",
"nx": "19.1.2",
"prettier": "3.2.5",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
Expand Down
Loading

0 comments on commit 396f245

Please sign in to comment.