-
Notifications
You must be signed in to change notification settings - Fork 318
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable recommended rules for eslint-plugin-n #5216
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,6 +73,7 @@ dev,sinon,BSD-3-Clause,Copyright 2010-2017 Christian Johansen | |
dev,sinon-chai,WTFPL and BSD-2-Clause,Copyright 2004 Sam Hocevar 2012–2017 Domenic Denicola | ||
dev,tap,ISC,Copyright 2011-2022 Isaac Z. Schlueter and Contributors | ||
dev,tiktoken,MIT,Copyright (c) 2022 OpenAI, Shantanu Jain | ||
dev,workerpool,Apache license 2.0,Copyright (C) 2014-2024 Jos de Jong [email protected] | ||
dev,yaml,ISC,Copyright Eemeli Aro <[email protected]> | ||
file,aws-lambda-nodejs-runtime-interface-client,Apache 2.0,Copyright 2019 Amazon.com Inc. or its affiliates. All Rights Reserved. | ||
file,profile.proto,Apache license 2.0,Copyright 2016 Google Inc. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
'use strict' | ||
|
||
// TODO: It shouldn't be necessary to disable n/no-unpublished-require - Research | ||
// eslint-disable-next-line n/no-unpublished-require | ||
module.exports = require('./packages/datadog-esbuild/index.js') |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
'use strict' | ||
|
||
// TODO: It shouldn't be necessary to disable n/no-unpublished-require - Research | ||
// eslint-disable-next-line n/no-unpublished-require | ||
Comment on lines
+3
to
+4
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will be fixed in #5274 |
||
module.exports = require('./packages/dd-trace') |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
|
||
/* eslint-disable no-var */ | ||
|
||
// TODO: It shouldn't be necessary to disable n/no-unpublished-require - Research | ||
// eslint-disable-next-line n/no-unpublished-require | ||
Comment on lines
+5
to
+6
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will be fixed in #5274 |
||
var guard = require('./packages/dd-trace/src/guardrails') | ||
|
||
module.exports = guard(function () { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -157,6 +157,7 @@ | |
"sinon-chai": "^3.7.0", | ||
"tap": "^16.3.7", | ||
"tiktoken": "^1.0.15", | ||
"workerpool": "^9.2.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Our code worked previously because There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @juan-fernandez The |
||
"yaml": "^2.5.0" | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will be fixed in #5274