aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.js
blob: 376aa387f748a0e17336a97be1a2247f6b6e2b44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module.exports = {
  "extends": "airbnb",
  "env": {
    "browser": true,
    "node": true,
    "jest": true,
  },
  "rules": {
    "react/jsx-filename-extension": ["error", { "extensions": [".js"] }],
    "no-underscore-dangle": ["error", { "allow": ["_test"] }],
  }
};