summaryrefslogtreecommitdiffstats
path: root/dox-sequence-diagram-ui/eslintrc.json
blob: b2a3f24aaa93293fb8edc56417da761580330423 (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
{
  "parserOptions": {
    "ecmaVersion": 6,
    "sourceType": "module",
    "ecmaFeatures": {
      "jsx": true
    }
  },
  "env": {
    "browser": true
  },
  "plugins": [
    "react"
  ],
  "extends": [
    "airbnb"
  ],
  "rules": {
    "padded-blocks": 0,
    "max-len": ["error", 160, 4],
    "no-underscore-dangle": 0,
    "global-require": 0,
    "react/sort-comp": 0,
    "new-cap": 0
  },
  "settings": {
    "react": {
      "pragma": "React",
      "version": "0.14.8"
    }
  }
}