Helps to replace all require() calls with import statements.

Convert require() inside inner scopes with Fix all action option allows conversions of require() calls inside nested functions and statements when using Fix All action.

Import statements are static module dependencies. Imports are hoisted - internally moved to the beginning of the current module. Require() calls are dynamic module loads, can be executed conditionally, and the scope is defined by the expression, where they are used. That's why conversion of require() statements from inner scopes to import statements may change the semantics of code.
Clear Convert require() inside inner scopes with Fix all action option to prevent any changes in these complex cases when using Fix all action.