Skip to content

Commit

Permalink
[EngSys] upgrade dev dependency @typescript-eslint/* to ~8.10.0 (#…
Browse files Browse the repository at this point in the history
…31466)

- replace version string with ~8.10.0
- rush update
- [monitor-opentelemetry-exporter] fixing linting error of unnecessary `undefine` type for the optional parameter
  • Loading branch information
jeremymeng authored Oct 18, 2024
1 parent dfd239c commit 1f4c88c
Show file tree
Hide file tree
Showing 3 changed files with 171 additions and 27 deletions.
180 changes: 162 additions & 18 deletions common/config/rush/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions common/tools/eslint-plugin-azure-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@
"prettier": "./prettier.json",
"peerDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@typescript-eslint/eslint-plugin": "~8.2.0",
"@typescript-eslint/parser": "~8.2.0",
"@typescript-eslint/eslint-plugin": "~8.10.0",
"@typescript-eslint/parser": "~8.10.0",
"eslint": "^9.9.0",
"eslint-plugin-n": "^17.10.1",
"eslint-plugin-no-only-tests": "^3.3.0",
Expand All @@ -77,22 +77,22 @@
"@eslint/js": "^9.9.0",
"@types/eslint": "^9.6.0",
"@types/estree": "~1.0.0",
"@typescript-eslint/typescript-estree": "~8.2.0",
"@typescript-eslint/typescript-estree": "~8.10.0",
"eslint-config-prettier": "^9.0.0",
"glob": "^10.3.10",
"tslib": "^2.6.2",
"typescript": "~5.6.2",
"typescript-eslint": "~8.2.0"
"typescript-eslint": "~8.10.0"
},
"devDependencies": {
"@types/eslint": "^9.6.0",
"@types/eslint__js": "8.42.3",
"@types/eslint-config-prettier": "6.11.3",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "~8.2.0",
"@typescript-eslint/parser": "~8.2.0",
"@typescript-eslint/rule-tester": "~8.2.0",
"@typescript-eslint/utils": "~8.2.0",
"@typescript-eslint/eslint-plugin": "~8.10.0",
"@typescript-eslint/utils": "~8.10.0",
"@typescript-eslint/parser": "~8.10.0",
"@typescript-eslint/rule-tester": "~8.10.0",
"@vitest/coverage-istanbul": "^1.4.0",
"cross-env": "^7.0.3",
"eslint": "^9.9.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function assertEnvelope(
sampleRate?: number,
baseType?: string,
expectedProperties?: Properties,
expectedMeasurements?: Measurements | undefined,
expectedMeasurements?: Measurements,
expectedBaseData?: Partial<MonitorDomain>,
expectedTime?: Date,
): void {
Expand Down

0 comments on commit 1f4c88c

Please sign in to comment.