{
    "root": true,
    "extends": "eslint:recommended",
    "env": {
        "browser": true,
        "node": true
    },
    "parserOptions": {
        "ecmaVersion": 6
    },
    "rules": {
        "arrow-body-style": ["warn", "as-needed", {
            "requireReturnForObjectLiteral": false
        }],
        "no-unused-vars": "error",
        "no-console": "warn",
        "max-len": "warn",
        "object-shorthand": "warn",
        "strict": ["error", "safe"],
        "no-script-url": "warn",
        "import/no-extraneous-dependencies": "off",
        "import/no-unresolved": "off",
        "comma-dangle": "warn",
        "no-undef": "error",
        "complexity": ["error", 10],
        "default-case": "error",
        "eqeqeq": ["error", "smart"]
    }
}