aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
blob: b9f8e1b7a31d299585a056ecf3e7c95d8b36f143 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
    "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",
        "single-quote": "off"
    }
}