Skip to content

Commit 6d0bd92

Browse files
committed
Update tests to handle newly deprecated rules
1 parent 4c876b9 commit 6d0bd92

File tree

3 files changed

+51
-6
lines changed

3 files changed

+51
-6
lines changed

.eslintrc.base.js

+15
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
const config = require(".");
99

10+
const includeDeprecated = !process.env.ESLINT_CONFIG_PRETTIER_NO_DEPRECATED;
11+
1012
module.exports = {
1113
extends: [
1214
"google",
@@ -68,6 +70,19 @@ module.exports = {
6870
"object-curly-spacing": "off",
6971
"babel/object-curly-spacing": ["error", "never"],
7072
"@babel/object-curly-spacing": ["error", "never"],
73+
74+
// Workaround: These rules are deprecated, but added by eslint-config-google.
75+
// We have to exclude them when testing the flat config, but also turn them
76+
// off for the linting tests to pass. It’s time to get rid of eslint-config-google
77+
// (their GitHub repo is archived as well).
78+
...(includeDeprecated
79+
? {}
80+
: {
81+
"comma-dangle": "off",
82+
"max-len": "off",
83+
"operator-linebreak": "off",
84+
"quotes": "off",
85+
}),
7186
},
7287
overrides: [
7388
{

test-lint/core.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
// Prettier wants double quotes, but `eslint-config-google` wants single quotes.
21
"use strict";
2+
3+
// Prettier wants a newline after the condition, but `eslint-config-google` does not.
4+
if (cart.items && cart.items[0] && cart.items[0].quantity === 0)
5+
updateCart(cart);

test/cli.test.js

+32-5
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ describe("does not flag", () => {
4141
});
4242

4343
describe("does flag", () => {
44-
const rules = ["strict", "arrow-parens"];
44+
const rules = ["strict", "unicorn/empty-brace-spaces"];
4545

4646
const results = onPatterns.map((pattern) => ({
4747
pattern: JSON.stringify(pattern),
@@ -54,7 +54,7 @@ describe("does flag", () => {
5454
"code": 2,
5555
"stdout": "The following rules are unnecessary or might conflict with Prettier:
5656
57-
- arrow-parens",
57+
- unicorn/empty-brace-spaces",
5858
}
5959
`);
6060
});
@@ -90,14 +90,14 @@ test("conflicting options", () => {
9090
});
9191

9292
test("special rules", () => {
93-
const rules = ["strict", "max-len"];
93+
const rules = ["strict", "no-unexpected-multiline"];
9494
expect(cli.processRules(createRules(rules, "error"))).toMatchInlineSnapshot(`
9595
{
9696
"code": 0,
9797
"stdout": "The following rules are enabled but cannot be automatically checked. See:
9898
https://github.com/prettier/eslint-config-prettier#special-rules
9999
100-
- max-len
100+
- no-unexpected-multiline
101101
102102
Other than that, no rules that are unnecessary or conflict with Prettier were found.",
103103
}
@@ -128,7 +128,33 @@ test("all the things", () => {
128128
"arrow-body-style",
129129
"unicorn/template-indent",
130130
];
131-
expect(cli.processRules(createRules(rules, "error"))).toMatchInlineSnapshot(`
131+
132+
const result = cli.processRules(createRules(rules, "error"));
133+
134+
if (process.env.ESLINT_CONFIG_PRETTIER_NO_DEPRECATED) {
135+
expect(result).toMatchInlineSnapshot(`
136+
{
137+
"code": 2,
138+
"stdout": "The following rules are unnecessary or might conflict with Prettier:
139+
140+
- flowtype/semi
141+
- react/jsx-indent
142+
143+
The following rules are enabled with config that might conflict with Prettier. See:
144+
https://github.com/prettier/eslint-config-prettier#special-rules
145+
146+
- curly
147+
- unicorn/template-indent
148+
- vue/html-self-closing
149+
150+
The following rules are enabled but cannot be automatically checked. See:
151+
https://github.com/prettier/eslint-config-prettier#special-rules
152+
153+
- no-unexpected-multiline",
154+
}
155+
`);
156+
} else {
157+
expect(result).toMatchInlineSnapshot(`
132158
{
133159
"code": 2,
134160
"stdout": "The following rules are unnecessary or might conflict with Prettier:
@@ -157,6 +183,7 @@ test("all the things", () => {
157183
- quotes",
158184
}
159185
`);
186+
}
160187
});
161188

162189
test("eslint-plugin-prettier", () => {

0 commit comments

Comments
 (0)