aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.js
blob: 9944cf8845943dd6a52f296b53cd00cbc9968aa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module.exports = {
  "extends": "airbnb",
  "parser": "babel-eslint",
  "env": {
    "browser": true,
    "node": true,
    "jest": true,
  },
  "rules": {
    "react/jsx-filename-extension": "off",
    "no-underscore-dangle": ["error", { "allow": ["_test"] }],
    "no-prototype-builtins": "off",
    "react/forbid-prop-types": "off",
    "react/prefer-stateless-function": "off",
  }
};