Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

import/order: There should be at least one empty line between import groups #9

Open
joncursi opened this issue Apr 19, 2019 · 0 comments

Comments

@joncursi
Copy link

Is there a way to get this module to play nicely with the import/order rule?

Rule:

  "import/order": [
      'error',
      {
        groups: ['builtin', 'external', 'parent', 'sibling', 'index'],
        'newlines-between': 'always',
      },
    ]

Code:

import * as React from 'react';

import COLORS from '~/constants/colors'; // <--
import DIMENSIONS from '~/constants/dimensions'; // <--

const Component = () => null;

export default Component;

Error:

import/order: There should be at least one empty line between import groups

It wants me to put a newline between COLORS and DIMENSIONS, but these should be grouped together.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant