aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/twbs/bootstrap/site/.eslintrc.json
blob: e911d46b27dc142c487ef02053324dbb65a4e2b1 (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
{
  "root": true,
  "env": {
    "es6": false,
    "jquery": true
  },
  "parserOptions": {
    "ecmaVersion": 5,
    "sourceType": "script"
  },
  "extends": [
    "plugin:unicorn/recommended",
    "xo",
    "xo/browser"
  ],
  "rules": {
    "capitalized-comments": "off",
    "indent": [
      "error",
      2,
      {
        "MemberExpression": "off",
        "SwitchCase": 1
      }
    ],
    "object-curly-spacing": [
      "error",
      "always"
    ],
    "semi": [
      "error",
      "never"
    ],
    "strict": "error",
    "unicorn/no-for-loop": "off",
    "unicorn/no-null": "off",
    "unicorn/prefer-array-find": "off",
    "unicorn/prefer-dataset": "off",
    "unicorn/prefer-includes": "off",
    "unicorn/prefer-number-properties": "off",
    "unicorn/prefer-node-append": "off",
    "unicorn/prefer-query-selector": "off",
    "unicorn/prevent-abbreviations": "off"
  }
}