Avoid duplicate module imports
このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。
ID: javascript-code-style/no-duplicate-imports
Language: JavaScript
Severity: Warning
Category: Best Practices
Description
Single imports are easier to read and maintain you can see everything being imported from a module in one line.
Non-Compliant Code Examples
import { merge } from 'module';
import something from 'another-module';
import { find } from 'module';
import something from 'something';
import { find } from 'something';
Compliant Code Examples
import { merge, find } from 'module';
import something from 'another-module';
// not mergeable
import { merge } from 'something';
import * as something from 'something';
Seamless integrations. Try Datadog Code Analysis