skkuding / codedang

Online Judge for SKKU
https://codedang.com
MIT License
46 stars 9 forks source link

ESLint `no-duplicate-imports` rule #667

Open dotoleeoak opened 1 year ago

dotoleeoak commented 1 year ago

Describe the problem and solution

한 곳에서 여러 줄에 import하는 것을 방지합니다. https://eslint.org/docs/latest/rules/no-duplicate-imports

// ❌
import { merge } from 'module';
import something from 'another-module';
import { find } from 'module';
// ✅
import { merge, find } from 'module';
import something from 'another-module';

Validations

jimin9038 commented 4 months ago

Changed the connected Notion task status to not-started

TAS-493 ESLint no-duplicate-imports rule