aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
blob: 5cc0ab6dc0c048c8417d2c192822e3ba02c448fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  "extends": ["airbnb", "prettier", "plugin:node/recommended"],
  "plugins": ["prettier"],
  "rules": {
    "prettier/prettier": "error",
    "no-unused-vars": "warn",
    "no-console": "off",
    "func-names": "off",
    "no-process-exit": "off",
    "object-shorthand": "off",
    "class-methods-use-this": "off"
  }
}