Open dotoleeoak opened 1 year ago
한 곳에서 여러 줄에 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';
Changed the connected Notion task status to not-started
no-duplicate-imports
Describe the problem and solution
한 곳에서 여러 줄에 import하는 것을 방지합니다. https://eslint.org/docs/latest/rules/no-duplicate-imports
Validations