summaryrefslogtreecommitdiff
path: root/web-ui/.eslintrc.json
blob: 6ffa2e2ee42fbf0793afa340539591ecadfbb8cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* see https://github.com/airbnb/javascript for lint rules */
{
    "extends": "airbnb",
    "plugins": [
        "react",
        "jsx-a11y",
        "import"
    ],
    "parser": "babel-eslint",
    "rules": {
      "strict": 0,
      "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"]
    }
}