aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc
blob: 0f41e102b7231979097b01ab827d19c330b8eb2e (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
  "env": {
    "es6": true,
    "node" : true,
    "browser" : true,
    "webextensions": true
  },
  "plugins": ["react"],
  "parser": "babel-eslint",
  "parserOptions": {
    "ecmaFeatures": {
      "jsx": true
    }
  },
  "extends": [ "eslint:all", "plugin:react/recommended" ],
  "rules": {
    "array-bracket-newline": ["error", { "multiline": true }],
    "array-element-newline": "off",
    "arrow-body-style": "off",
    "arrow-parens": ["error", "as-needed", { "requireForBlockBody": true }],
    "brace-style": ["error", "1tbs", { "allowSingleLine": true }],
    "capitalized-comments": "off",
    "class-methods-use-this": "off",
    "comma-dangle": "off",
    "consistent-return": "off",
    "default-case": "off",
    "dot-location": ["error", "property"],
    "function-paren-newline": "off",
    "id-length": "off",
    "indent": ["error", 2],
    "jsx-quotes": ["error", "prefer-single"],
    "max-classes-per-file": "off",
    "max-params": ["error", 5],
    "max-statements": ["error", 15],
    "multiline-comment-style": "off",
    "multiline-ternary": "off",
    "newline-after-var": "off",
    "newline-before-return": "off",
    "newline-per-chained-call": "off",
    "no-alert": "off",
    "no-bitwise": "off",
    "no-console": ["error", { "allow": ["warn", "error"] }],
    "no-continue": "off",
    "no-empty-function": "off",
    "no-magic-numbers": "off",
    "no-mixed-operators": "off",
    "no-plusplus": "off",
    "no-ternary": "off",
    "no-undefined": "off",
    "no-undef-init": "off",
    "no-unused-vars": ["error", { "varsIgnorePattern": "h" }],
    "no-use-before-define": "off",
    "no-warning-comments": "off",
    "object-curly-newline": ["error", { "consistent": true }],
    "object-curly-spacing": ["error", "always", { "arraysInObjects": false, "objectsInObjects": false }],
    "object-property-newline": ["error", { "allowMultiplePropertiesPerLine": true }],
    "object-shorthand": "off",
    "one-var": "off",
    "padded-blocks": "off",
    "prefer-const": "off",
    "prefer-destructuring": ["error", { "AssignmentExpression": {"array": false}}],
    "prefer-template": "off",
    "quote-props": "off",
    "quotes": ["error", "single", { "allowTemplateLiterals": true }],
    "require-jsdoc": "off",
    "require-unicode-regexp": "off",
    "sort-imports": "off",
    "sort-keys": "off",
    "sort-vars": "off",
    "space-before-function-paren": ["error", "never"],

    "react/jsx-indent": ["error", 2],
    "react/prop-types": "off",
    "react/react-in-jsx-scope": "off"
  }
}