aboutsummaryrefslogtreecommitdiff
path: root/src/rules/vue/default.json
blob: 07aaf6a936f3512842dba528866e52bff2cab95b (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
  "vue/attributes-order": [
    "error",
    {
      "order": [
        "DEFINITION",
        "LIST_RENDERING",
        "CONDITIONALS",
        "RENDER_MODIFIERS",
        "GLOBAL",
        "UNIQUE",
        "TWO_WAY_BINDING",
        "OTHER_DIRECTIVES",
        "OTHER_ATTR",
        "EVENTS",
        "CONTENT"
      ]
    }
  ],
  "vue/html-closing-bracket-newline": [
    "error",
    {
      "multiline": "always",
      "singleline": "never"
    }
  ],
  "vue/html-closing-bracket-spacing": [
    "error",
    {
      "endTag": "never",
      "selfClosingTag": "always",
      "startTag": "never"
    }
  ],
  "vue/html-indent": [
    "error",
    "tab",
    {
      "alignAttributesVertically": true,
      "attribute": 1,
      "baseIndent": 1,
      "closeBracket": 0
    }
  ],
  "vue/html-quotes": [
    "error",
    "double"
  ],
  "vue/script-indent": [
    "error",
    "tab",
    {
      "baseIndent": 0,
      "switchCase": 1
    }
  ]
}