Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 475 Bytes

import-name-comment.md

File metadata and controls

28 lines (18 loc) · 475 Bytes

import-name-comment

Enforce comment on top of import group

Rule Details

Examples of incorrect code for this rule:

import App from 'components/App';

import AppTests from 'tests/Yup.test';
import NewTest from 'tests/App.test';
import YoTest from 'tests/yo.test';

Examples of correct code for this rule:

// Components
import App from 'components/App';

// Tests
import NewTest from 'tests/App.test';
import YoTest from 'tests/yo.test';