Skip to content

Commit

Permalink
chore(deps-dev): update lint (#787)
Browse files Browse the repository at this point in the history
* chore(deps-dev): update lint

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Fix lint errors

Signed-off-by: Andrew Haines <[email protected]>

* Manually register Prettier plugins

Signed-off-by: Andrew Haines <[email protected]>

---------

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Andrew Haines <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Andrew Haines <[email protected]>
  • Loading branch information
renovate[bot] and haines authored Jan 22, 2024
1 parent d9a6943 commit 7acfdf0
Show file tree
Hide file tree
Showing 11 changed files with 77 additions and 74 deletions.
5 changes: 4 additions & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
{}
{
"$schema": "https://json.schemastore.org/prettierrc",
"plugins": ["prettier-plugin-pkg"]
}
106 changes: 53 additions & 53 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,17 @@
"@microsoft/api-extractor": "7.39.1",
"@tsconfig/node18": "18.2.2",
"@types/node": "18.19.8",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"concurrently": "8.2.2",
"eslint": "8.56.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.6.3",
"eslint-plugin-tsdoc": "0.2.17",
"patch-package": "8.0.0",
"prettier": "3.2.2",
"prettier-plugin-pkg": "0.18.0",
"prettier": "3.2.4",
"prettier-plugin-pkg": "0.18.1",
"ts-jest": "29.1.1",
"ts-proto": "1.166.2",
"typescript": "5.3.3"
Expand Down
4 changes: 2 additions & 2 deletions packages/core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"tsBuildInfoFile": "lib/core.tsbuildinfo"
}
"tsBuildInfoFile": "lib/core.tsbuildinfo",
},
}
4 changes: 2 additions & 2 deletions packages/embedded/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
"lib": ["ES2020", "DOM"],
"outDir": "lib",
"rootDir": "src",
"tsBuildInfoFile": "lib/embedded.tsbuildinfo"
}
"tsBuildInfoFile": "lib/embedded.tsbuildinfo",
},
}
4 changes: 2 additions & 2 deletions packages/files/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
"lib": ["DOM"],
"outDir": "lib",
"rootDir": "src",
"tsBuildInfoFile": "lib/files.tsbuildinfo"
}
"tsBuildInfoFile": "lib/files.tsbuildinfo",
},
}
4 changes: 2 additions & 2 deletions packages/grpc/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"tsBuildInfoFile": "lib/grpc.tsbuildinfo"
}
"tsBuildInfoFile": "lib/grpc.tsbuildinfo",
},
}
4 changes: 2 additions & 2 deletions packages/http/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"tsBuildInfoFile": "lib/http.tsbuildinfo"
}
"tsBuildInfoFile": "lib/http.tsbuildinfo",
},
}
4 changes: 2 additions & 2 deletions packages/opentelemetry/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"tsBuildInfoFile": "lib/core.tsbuildinfo"
}
"tsBuildInfoFile": "lib/core.tsbuildinfo",
},
}
6 changes: 3 additions & 3 deletions packages/test/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
{ "path": "../grpc" },
{ "path": "../http" },
{ "path": "../opentelemetry" },
{ "path": "./tsconfig.protobuf.json" }
{ "path": "./tsconfig.protobuf.json" },
],
"compilerOptions": {
"checkJs": true,
"lib": ["ES2020", "DOM"],
"noEmit": true,
"tsBuildInfoFile": "lib/test.tsbuildinfo"
}
"tsBuildInfoFile": "lib/test.tsbuildinfo",
},
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"files": [],
"references": [{ "path": "packages/test" }]
"references": [{ "path": "packages/test" }],
}

0 comments on commit 7acfdf0

Please sign in to comment.