Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(instrumentation-langchain): fixed linter issues and updated relea…
…se-please-config.json to match the suggestion given by rp-validate
  • Loading branch information
haneric00 committed Aug 27, 2025
commit bcb3374f0ade163fede98f5e4f26a2403b227419
1 change: 1 addition & 0 deletions packages/instrumentation-langchain/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build
18 changes: 18 additions & 0 deletions packages/instrumentation-langchain/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// module.exports = {
// "env": {
// "mocha": true,
// "node": true
// },
// ...require('../../eslint.config.js')
// }


module.exports = {
"env": {
"mocha": true,
"node": true
},
"extends": "../../eslint.config.js",
"ignorePatterns": ["dist/", "*.d.ts"],
"root": true
};
4 changes: 2 additions & 2 deletions packages/instrumentation-langchain/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "instrumentation-langchain",
"name": "@opentelemetry/instrumentation-langchain",
"private": true,
"version": "1.0.0",
"description": "Langchain.js instrumentation following OpenTelemetry semantic convention.",
Expand Down Expand Up @@ -53,7 +53,7 @@
"type:check": "tsc --noEmit",
"clean": "rimraf build/*",
"compile": "tsc -p .",
"compile:with-dependencies": "nx run-many -t compile -p @opentelemetry/instrumentation-koa",
"compile:with-dependencies": "nx run-many -t compile -p @opentelemetry/instrumentation-langchain",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"lint:readme": "node ../../scripts/lint-readme.js",
Expand Down
Loading