aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/.eslintrc
blob: a063471955c2a5dcf9b1202700885914b9f34f16 (plain)
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
{
  "extends": "eslint:recommended",

  "ecmaFeatures": {
    "jsx": true,
    "modules": true
  },

  "env": {
    "browser": true,
    "es6": true,
    "mocha": true,
    "node": true
  },

  "globals": {
    "define": true,
    "require": true,
    "numeral": true,
    "key": true,
    "d3": true,
    "baseUrl": true,
    "t": true,
    "tp": true
  },

  "parser": "babel-eslint",

  "plugins": [
    "react",
    "mocha"
  ],

  "rules": {
    "quotes": [2, "single", "avoid-escape"],

    "react/jsx-closing-bracket-location": [1, "after-props"],
    "react/jsx-handler-names": 0,
    "react/jsx-key": 2,
    "react/jsx-max-props-per-line": [1, { "maximum": 3 }],
    "react/jsx-no-duplicate-props": 2,
    "react/jsx-no-undef": 2,
    "react/jsx-pascal-case": 1,
    "react/jsx-uses-react": 1,
    "react/jsx-uses-vars": 2,
    "react/no-did-mount-set-state": [2, "allow-in-func"],
    "react/no-did-update-set-state": [2, "allow-in-func"],
    "react/no-direct-mutation-state": 2,
    "react/no-multi-comp": 0,
    "react/no-unknown-property": 2,
    "react/prop-types": 0,
    "react/react-in-jsx-scope": 2,
    "react/self-closing-comp": 2,
    "react/sort-comp": 1
  }
}