aboutsummaryrefslogtreecommitdiffhomepage
path: root/.eslintrc.js
blob: d98ea69a238ae40594d93456f525fd80876016ea (plain) (blame)
1
2
3
4
5
6
7
8
9
module.exports = {
  "extends": ["airbnb-base"],
    "plugins": [
      "mocha"
    ],
    "rules": {
      "mocha/no-exclusive-tests": "error"
    }
};