.eslintrc.json 852 Bytes
Newer Older
XhmikosR's avatar
XhmikosR committed
1
{
2
  "root": true,
XhmikosR's avatar
XhmikosR committed
3
  "parserOptions": {
4
    "ecmaVersion": 5,
XhmikosR's avatar
XhmikosR committed
5
6
    "sourceType": "script"
  },
7
8
9
10
11
  "extends": [
    "plugin:unicorn/recommended",
    "xo",
    "xo/browser"
  ],
XhmikosR's avatar
XhmikosR committed
12
  "rules": {
13
14
15
16
17
18
19
20
21
22
23
24
25
    "capitalized-comments": "off",
    "indent": [
      "error",
      2,
      {
        "MemberExpression": "off",
        "SwitchCase": 1
      }
    ],
    "multiline-ternary": [
      "error",
      "always-multiline"
    ],
XhmikosR's avatar
XhmikosR committed
26
    "no-new": "off",
27
28
29
30
31
32
33
34
35
    "object-curly-spacing": [
      "error",
      "always"
    ],
    "semi": [
      "error",
      "never"
    ],
    "strict": "error",
XhmikosR's avatar
XhmikosR committed
36
    "unicorn/no-for-loop": "off",
37
    "unicorn/no-null": "off",
XhmikosR's avatar
XhmikosR committed
38
    "unicorn/prefer-dataset": "off",
39
40
41
42
    "unicorn/prefer-includes": "off",
    "unicorn/prefer-node-append": "off",
    "unicorn/prefer-query-selector": "off",
    "unicorn/prevent-abbreviations": "off"
XhmikosR's avatar
XhmikosR committed
43
44
  }
}