@@ -41,7 +41,7 @@ describe("does not flag", () => {
41
41
} ) ;
42
42
43
43
describe ( "does flag" , ( ) => {
44
- const rules = [ "strict" , "arrow-parens " ] ;
44
+ const rules = [ "strict" , "unicorn/empty-brace-spaces " ] ;
45
45
46
46
const results = onPatterns . map ( ( pattern ) => ( {
47
47
pattern : JSON . stringify ( pattern ) ,
@@ -54,7 +54,7 @@ describe("does flag", () => {
54
54
"code": 2,
55
55
"stdout": "The following rules are unnecessary or might conflict with Prettier:
56
56
57
- - arrow-parens ",
57
+ - unicorn/empty-brace-spaces ",
58
58
}
59
59
` ) ;
60
60
} ) ;
@@ -90,14 +90,14 @@ test("conflicting options", () => {
90
90
} ) ;
91
91
92
92
test ( "special rules" , ( ) => {
93
- const rules = [ "strict" , "max-len " ] ;
93
+ const rules = [ "strict" , "no-unexpected-multiline " ] ;
94
94
expect ( cli . processRules ( createRules ( rules , "error" ) ) ) . toMatchInlineSnapshot ( `
95
95
{
96
96
"code": 0,
97
97
"stdout": "The following rules are enabled but cannot be automatically checked. See:
98
98
https://github.com/prettier/eslint-config-prettier#special-rules
99
99
100
- - max-len
100
+ - no-unexpected-multiline
101
101
102
102
Other than that, no rules that are unnecessary or conflict with Prettier were found.",
103
103
}
@@ -128,7 +128,33 @@ test("all the things", () => {
128
128
"arrow-body-style" ,
129
129
"unicorn/template-indent" ,
130
130
] ;
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 ( `
132
158
{
133
159
"code": 2,
134
160
"stdout": "The following rules are unnecessary or might conflict with Prettier:
@@ -157,6 +183,7 @@ test("all the things", () => {
157
183
- quotes",
158
184
}
159
185
` ) ;
186
+ }
160
187
} ) ;
161
188
162
189
test ( "eslint-plugin-prettier" , ( ) => {
0 commit comments