aboutsummaryrefslogtreecommitdiff
path: root/src/rules/import/default.json
blob: 291e45f44974ba54e4644651fc925c18612529f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
  "import/exports-last": [
    "error"
  ],
  "import/first": [
    "error"
  ],
  "import/newline-after-import": [
    "error",
    {
      "count": 1
    }
  ],
  "import/no-webpack-loader-syntax": [
    "error"
  ],
  "import/order": [
    "error",
    {
      "alphabetize": {
        "caseInsensitive": false,
        "order": "asc"
      },
      "groups": [
        [
          "builtin",
          "external"
        ],
        [
          "internal",
          "parent",
          "sibling"
        ],
        [
          "index"
        ],
        "unknown"
      ],
      "newlines-between": "always"
    }
  ]
}