summaryrefslogtreecommitdiff
path: root/web-ui/.eslintrc.json
blob: 5a57efaa0acffa6da6b662674fa65adad17cd667 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* see https://github.com/airbnb/javascript for lint rules */
{
    "extends": "airbnb",
    "plugins": [
        "react",
        "jsx-a11y",
        "import"
    ],
    "parser": "babel-eslint",
    "rules": {
      "strict": 0
    },
    "rules": {
      "import/no-extraneous-dependencies": ["off"],
      "import/extensions": ["off"],
      "import/no-unresolved": ["off"],
      "react/jsx-filename-extension": ["off"],
      "jsx-quotes": ["error", "prefer-single"],
      "no-undef": ["off"],
      "comma-dangle": ["off"]
    }
}