-
-
Notifications
You must be signed in to change notification settings - Fork 485
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add option to skip arrow function for explicit function return … #4233
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -246,6 +246,10 @@ impl Rule for UseExplicitType { | |||||||||||||||||||||||||||||||||
return None; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
if is_arrow_func(func) && is_function_used_in_object(func) { | ||||||||||||||||||||||||||||||||||
return None; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
if is_higher_order_function(func) { | ||||||||||||||||||||||||||||||||||
return None; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
@@ -362,6 +366,38 @@ fn is_function_used_in_argument_or_array(func: &AnyJsFunction) -> bool { | |||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
/// Check if the function is used in some object | ||||||||||||||||||||||||||||||||||
/// | ||||||||||||||||||||||||||||||||||
/// # Examples | ||||||||||||||||||||||||||||||||||
/// | ||||||||||||||||||||||||||||||||||
/// JS_OBJECT: | ||||||||||||||||||||||||||||||||||
/// | ||||||||||||||||||||||||||||||||||
/// interface Behavior { | ||||||||||||||||||||||||||||||||||
/// attribute: string; | ||||||||||||||||||||||||||||||||||
/// func: () => string; | ||||||||||||||||||||||||||||||||||
/// arrowFunc: () => string; | ||||||||||||||||||||||||||||||||||
/// } | ||||||||||||||||||||||||||||||||||
/// | ||||||||||||||||||||||||||||||||||
/// function getObjectWithFunction(): Behavior { | ||||||||||||||||||||||||||||||||||
/// return { | ||||||||||||||||||||||||||||||||||
/// attribute: 'value', | ||||||||||||||||||||||||||||||||||
/// func: function myFunc(): string { return "value" }, | ||||||||||||||||||||||||||||||||||
/// arrowFunc: () => {}, | ||||||||||||||||||||||||||||||||||
/// } | ||||||||||||||||||||||||||||||||||
/// } | ||||||||||||||||||||||||||||||||||
Comment on lines
+381
to
+387
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Code example should be in code block.
Suggested change
|
||||||||||||||||||||||||||||||||||
/// | ||||||||||||||||||||||||||||||||||
fn is_function_used_in_object(func: &AnyJsFunction) -> bool { | ||||||||||||||||||||||||||||||||||
matches!( | ||||||||||||||||||||||||||||||||||
func.syntax().parent().kind(), | ||||||||||||||||||||||||||||||||||
Some(JsSyntaxKind::JS_PROPERTY_OBJECT_MEMBER) | ||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||
Comment on lines
+390
to
+393
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is not enough because this will accept cases we want to reject.
In contrast, the following could be accepted: const X: Type = {
prop: () => {}
};
f({ prop: () => {} }) |
||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
/// Check if a function is an arrow function | ||||||||||||||||||||||||||||||||||
fn is_arrow_func(func: &AnyJsFunction) -> bool { | ||||||||||||||||||||||||||||||||||
func.as_js_arrow_function_expression().is_some() | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
Comment on lines
+396
to
+399
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This check is to permissive. This accepts too much code. |
||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
/// Checks if a function is an IIFE (Immediately Invoked Function Expressions) | ||||||||||||||||||||||||||||||||||
/// | ||||||||||||||||||||||||||||||||||
/// # Examples | ||||||||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,5 +91,20 @@ function fn() { | |
}; | ||
} | ||
|
||
const x = { prop: () => {} } | ||
const x = { bar: { prop: () => {} } } | ||
Comment on lines
-94
to
-95
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These examples should be still invalid. |
||
const x = { namedFunctions: function alpha () => {}, unNamedFunctions: function () => {} } | ||
const x = { bar: { namedFunctions: function alpha () => {}, unNamedFunctions: function () => {} } } | ||
|
||
|
||
// Returning object from function | ||
interface Behavior { | ||
attribute: string; | ||
namedFunc: () => string; | ||
arrowFunc: () => string; | ||
} | ||
|
||
function getObjectWithFunction(): Behavior { | ||
return { | ||
namedFunc: function myFunc() { return "value" }, | ||
arrowFunc: () => {}, | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This example seems not related to what we check. We could remove it.