Skip to content

Commit

Permalink
chore: upgrade eslint-plugin-eslint-plugin@^4.2.0 (#15882)
Browse files Browse the repository at this point in the history
  • Loading branch information
aladdin-add committed May 16, 2022
1 parent cc29c69 commit ea65cb5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -96,7 +96,7 @@
"eslint": "file:.",
"eslint-config-eslint": "file:packages/eslint-config-eslint",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-eslint-plugin": "^4.0.1",
"eslint-plugin-eslint-plugin": "^4.2.0",
"eslint-plugin-internal-rules": "file:tools/internal-rules",
"eslint-plugin-jsdoc": "^37.0.0",
"eslint-plugin-node": "^11.1.0",
Expand Down
8 changes: 4 additions & 4 deletions tests/lib/rule-tester/rule-tester.js
Expand Up @@ -1220,8 +1220,8 @@ describe("RuleTester", () => {
},
{
code: "",
errors: [{ messageId: "ecmaVersionMessage", data: { type: "number", ecmaVersion: "6" } }],
parserOptions: {}
parserOptions: {},
errors: [{ messageId: "ecmaVersionMessage", data: { type: "number", ecmaVersion: "6" } }]
}
]
});
Expand All @@ -1236,8 +1236,8 @@ describe("RuleTester", () => {
},
{
code: "",
errors: [{ messageId: "ecmaVersionMessage", data: { type: "string", ecmaVersion: "latest" } }],
parserOptions: { ecmaVersion: "latest" }
parserOptions: { ecmaVersion: "latest" },
errors: [{ messageId: "ecmaVersionMessage", data: { type: "string", ecmaVersion: "latest" } }]
}
]
});
Expand Down

0 comments on commit ea65cb5

Please sign in to comment.