'require()' is used instead of 'import'
Reports a require()
statement. Suggests converting it to a require()
call with an import
statement.
Enable 'Convert require() inside inner scopes with Fix all action' to convert all require()
calls inside the nested functions and statements when using the 'Fix all' action.
Please note that converting require()
statements inside inner scopes to import
statements may cause changes in the semantics of the code. Import statements are static module dependencies and are hoisted, which means that they are moved to the top of the current module. require()
calls load modules dynamically. They can be executed conditionally, and their scope is defined by the expression in which they are used.
Clear the 'Convert require() inside inner scopes with Fix all action' checkbox to prevent any changes in these complex cases when using the 'Fix all' action.
Inspection options
Option | Type | Default |
---|---|---|
Convert require() inside inner scopes with Fix all action | Checkbox | false |
Inspection Details | |
---|---|
Available in: | AppCode 2023.3, CLion 2023.3, GoLand 2023.3, IntelliJ IDEA 2023.3, JetBrains Rider 2023.1, PhpStorm 2023.3, PyCharm 2023.3, Qodana for .NET 2023.1, Qodana for JS 2023.3, Qodana for JVM 2023.3, Qodana for PHP 2023.3, Qodana for Ruby 2023.3, RubyMine 2023.3, WebStorm 2023.3 |
Plugin: | JavaScript and TypeScript, 233.SNAPSHOT |