aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc
blob: 08e0b82064691b381d7e097047f2174b55dce18c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "extends": "airbnb",
  "parser": "babel-eslint",
  "env": {
    "browser": true,
    "node": true,
    "jest": true
  },
  "plugins":["notice"],
  "rules": {
    "react/jsx-filename-extension": "off",
    "no-underscore-dangle": ["error", { "allow": ["_test", "__REDUX_DEVTOOLS_EXTENSION_COMPOSE__"] }],
    "no-prototype-builtins": "off",
    "react/forbid-prop-types": "off",
    "react/prefer-stateless-function": "off",
    "import/prefer-default-export": "off",
    "no-console": "off",
    "notice/notice":["error", {
      "templateFile": ".licence-template"
    }]
  }
}