You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add deprecation warnings for legacy API in RuleTester (#16063)
* feat: add deprecation warnings for legacy API in `RuleTester`
* fix: use unique deprecation code for rules
* refactor: avoid using deprecation codes
* refactor: use object-style syntax
* refactor: use process.emitWarning()
* test: add more cases
* fix: improve check for missing schema
* refactor: update fixtures
* test: add test cases when schema is undefined or null
* fix: lint
`"${ruleName}" rule is using the deprecated function-style format and will stop working in ESLint v9. Please use object-style format: https://eslint.org/docs/developer-guide/working-with-rules`,
318
+
"DeprecationWarning"
319
+
);
320
+
}
321
+
}
322
+
323
+
/**
324
+
* Emit a deprecation warning if rule has options but is missing the "meta.schema" property
`"${ruleName}" rule has options but is missing the "meta.schema" property and will stop working in ESLint v9. Please add a schema: https://eslint.org/docs/developer-guide/working-with-rules#options-schemas`,
"\"function-style-rule\" rule is using the deprecated function-style format and will stop working in ESLint v9. Please use object-style format: https://eslint.org/docs/developer-guide/working-with-rules",
2290
+
"DeprecationWarning"
2291
+
]
2292
+
);
2293
+
});
2294
+
2295
+
it("should log a deprecation warning when meta is not defined for the rule",()=>{
"\"rule-with-no-meta-1\" rule has options but is missing the \"meta.schema\" property and will stop working in ESLint v9. Please add a schema: https://eslint.org/docs/developer-guide/working-with-rules#options-schemas",
2308
+
"DeprecationWarning"
2309
+
]
2310
+
);
2311
+
});
2312
+
2313
+
it("should log a deprecation warning when schema is not defined for the rule",()=>{
"\"rule-with-no-schema-1\" rule has options but is missing the \"meta.schema\" property and will stop working in ESLint v9. Please add a schema: https://eslint.org/docs/developer-guide/working-with-rules#options-schemas",
2326
+
"DeprecationWarning"
2327
+
]
2328
+
);
2329
+
});
2330
+
2331
+
it("should log a deprecation warning when schema is `undefined`",()=>{
2332
+
construleWithUndefinedSchema={
2333
+
meta: {
2334
+
type: "problem",
2335
+
// eslint-disable-next-line no-undefined -- intentioally added for test case
"\"rule-with-undefined-schema\" rule has options but is missing the \"meta.schema\" property and will stop working in ESLint v9. Please add a schema: https://eslint.org/docs/developer-guide/working-with-rules#options-schemas",
2359
+
"DeprecationWarning"
2360
+
]
2361
+
);
2362
+
});
2363
+
2364
+
it("should log a deprecation warning when schema is `null`",()=>{
"\"rule-with-null-schema\" rule has options but is missing the \"meta.schema\" property and will stop working in ESLint v9. Please add a schema: https://eslint.org/docs/developer-guide/working-with-rules#options-schemas",
2391
+
"DeprecationWarning"
2392
+
]
2393
+
);
2394
+
});
2395
+
2396
+
it("should not log a deprecation warning when schema is an empty array",()=>{
it("When the rule has meta without meta.schema, and some test cases have options property but it's an empty array, the missing schema warning is not emitted",()=>{
0 commit comments