aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
blob: 43bb53566905044fb7172e48073984818ef60a41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
    "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"
    },
    "parserOptions": {
        "ecmaVersion": 11,
        "sourceType": "module"
    }
}