Skip to content

Commit

Permalink
Fix: remove custom plugins from replacedBy metadata (#13274)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaicataldo committed May 11, 2020
1 parent 0db3b1d commit 2c778fb
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion lib/rules/callback-return.js
Expand Up @@ -12,7 +12,7 @@ module.exports = {
meta: {
deprecated: true,

replacedBy: ["node/callback-return"],
replacedBy: [],

type: "suggestion",

Expand Down
2 changes: 1 addition & 1 deletion lib/rules/global-require.js
Expand Up @@ -50,7 +50,7 @@ module.exports = {
meta: {
deprecated: true,

replacedBy: ["node/global-require"],
replacedBy: [],

type: "suggestion",

Expand Down
2 changes: 1 addition & 1 deletion lib/rules/handle-callback-err.js
Expand Up @@ -13,7 +13,7 @@ module.exports = {
meta: {
deprecated: true,

replacedBy: ["node/handle-callback-err"],
replacedBy: [],

type: "suggestion",

Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-buffer-constructor.js
Expand Up @@ -12,7 +12,7 @@ module.exports = {
meta: {
deprecated: true,

replacedBy: ["node/no-deprecated-api"],
replacedBy: [],

type: "problem",

Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-mixed-requires.js
Expand Up @@ -13,7 +13,7 @@ module.exports = {
meta: {
deprecated: true,

replacedBy: ["node/no-mixed-requires"],
replacedBy: [],

type: "suggestion",

Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-new-require.js
Expand Up @@ -13,7 +13,7 @@ module.exports = {
meta: {
deprecated: true,

replacedBy: ["node/no-new-require"],
replacedBy: [],

type: "suggestion",

Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-path-concat.js
Expand Up @@ -12,7 +12,7 @@ module.exports = {
meta: {
deprecated: true,

replacedBy: ["node/no-path-concat"],
replacedBy: [],

type: "suggestion",

Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-process-env.js
Expand Up @@ -12,7 +12,7 @@ module.exports = {
meta: {
deprecated: true,

replacedBy: ["node/no-process-env"],
replacedBy: [],

type: "suggestion",

Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-process-exit.js
Expand Up @@ -12,7 +12,7 @@ module.exports = {
meta: {
deprecated: true,

replacedBy: ["node/no-process-exit"],
replacedBy: [],

type: "suggestion",

Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-restricted-modules.js
Expand Up @@ -42,7 +42,7 @@ module.exports = {
meta: {
deprecated: true,

replacedBy: ["node/no-restricted-require"],
replacedBy: [],

type: "suggestion",

Expand Down
2 changes: 1 addition & 1 deletion lib/rules/no-sync.js
Expand Up @@ -15,7 +15,7 @@ module.exports = {
meta: {
deprecated: true,

replacedBy: ["node/no-sync"],
replacedBy: [],

type: "suggestion",

Expand Down

0 comments on commit 2c778fb

Please sign in to comment.