Skip to content

Commit 7e4019f

Browse files
committed
chore: update TODO comments
1 parent 9ebf972 commit 7e4019f

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

packages/plugins/eslint-plugin-react-dom/src/rules/no-unsafe-iframe-sandbox.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ruleTester.run(RULE_NAME, rule, {
2424
},
2525
},
2626
},
27-
// TODO: Evaluate the necessity of supporting props lookup for spread props
27+
// TODO: Investigate the necessity of supporting props lookup for spread props
2828
{
2929
code: /* tsx */ `
3030
const props = {

packages/plugins/eslint-plugin-react-web-api/src/rules/no-leaked-event-listener.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@ ruleTester.run(RULE_NAME, rule, {
998998
}, [])
999999
}
10001000
`,
1001-
// FIXME: This case is not supported yet.
1001+
// TODO: This case is not supported yet.
10021002
// /* tsx */ `
10031003
// function Example() {
10041004
// const rHandleResize = useRef(() => {});

packages/plugins/eslint-plugin-react-x/src/rules/no-duplicate-key.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export const RULE_FEATURES = [
2020

2121
export type MessageID = CamelCase<typeof RULE_NAME>;
2222

23+
// TODO: Re-implement this rule to improve performance
2324
export default createRule<[], MessageID>({
2425
meta: {
2526
type: "problem",

0 commit comments

Comments
 (0)