import-sort icon indicating copy to clipboard operation
import-sort copied to clipboard

Add support for `import/order` rule from `eslint-plugin-import` for `import-sort-style-eslint`

Open sergeysova opened this issue 5 years ago • 0 comments

I have this config for my eslint:

{
  "rules": {
    "import/order": [
      "warn",
      {
        "groups": [
          "builtin",
          "external",
          "internal",
          "parent",
          "sibling",
          "index"
        ]
      }
    ]
  }
}

But style-eslint cannot read it, and I have conflicts

sergeysova avatar Jul 11 '20 13:07 sergeysova