Skip to content

Commit

Permalink
chore: fix integration tests for ESLint formatting deprecations (#7891)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaKGoldberg committed Nov 8, 2023
1 parent 2a42688 commit eb736bb
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 4 deletions.
Expand Up @@ -24,7 +24,16 @@ exports[`recommended-does-not-require-program should lint successfully 1`] = `
"output": "const foo: unknown = true;
",
"suppressedMessages": [],
"usedDeprecatedRules": [],
"usedDeprecatedRules": [
{
"replacedBy": [],
"ruleId": "no-extra-semi",
},
{
"replacedBy": [],
"ruleId": "no-mixed-spaces-and-tabs",
},
],
"warningCount": 0,
},
]
Expand Down
Expand Up @@ -58,7 +58,12 @@ export default Vue.extend({
</script>
",
"suppressedMessages": [],
"usedDeprecatedRules": [],
"usedDeprecatedRules": [
{
"replacedBy": [],
"ruleId": "semi-spacing",
},
],
"warningCount": 0,
},
{
Expand Down Expand Up @@ -93,7 +98,12 @@ export default class Utility {
</script>
",
"suppressedMessages": [],
"usedDeprecatedRules": [],
"usedDeprecatedRules": [
{
"replacedBy": [],
"ruleId": "semi-spacing",
},
],
"warningCount": 0,
},
{
Expand Down Expand Up @@ -145,7 +155,12 @@ export default Vue.extend({
</script>
",
"suppressedMessages": [],
"usedDeprecatedRules": [],
"usedDeprecatedRules": [
{
"replacedBy": [],
"ruleId": "semi-spacing",
},
],
"warningCount": 0,
},
]
Expand Down

0 comments on commit eb736bb

Please sign in to comment.