Avoid duplicate module imports

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。

Metadata

ID: typescript-code-style/no-duplicate-imports

Language: TypeScript

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 type { merge } from 'module';
import { merge } from 'module';
import something from 'another-module';
import { find } from 'module';
import type { merge } from 'module';
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 type { MaybePromise } from '@datadog-vscode/common/utils';
import { asyncMap } from '@datadog-vscode/common/utils';
import { merge, find } from 'module';
import something from 'another-module';

// not mergeable
import { merge } from 'something';
import * as something from 'something';
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis