-
Notifications
You must be signed in to change notification settings - Fork 341
Enable recommended rules for eslint-plugin-n #5216
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
Changes from all commits
7b38a9a
f6eb155
0199b2e
a443154
7473e3a
9838918
16fc90a
3e6860f
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 |
---|---|---|
|
@@ -68,6 +68,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]> | ||
dev,yarn-deduplicate,Apache license 2.0,Copyright [yyyy] [name of copyright owner] | ||
file,aws-lambda-nodejs-runtime-interface-client,Apache 2.0,Copyright 2019 Amazon.com Inc. or its affiliates. All Rights Reserved. | ||
|
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 #5320 |
||
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 #5320 |
||
var guard = require('./packages/dd-trace/src/guardrails') | ||
|
||
module.exports = guard(function () { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,6 +156,7 @@ | |
"sinon-chai": "^3.7.0", | ||
"tap": "^16.3.10", | ||
"tiktoken": "^1.0.21", | ||
"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.8.0", | ||
"yarn-deduplicate": "^6.0.2" | ||
} | ||
|
Uh oh!
There was an error while loading. Please reload this page.
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 #5320