{
    "plugins": [
        "security"
    ],
    "extends": [
        "airbnb-base",
        "plugin:security/recommended"
    ],
    "rules": {
        "max-len": ["warn", 120],
        "comma-dangle": "off",
        "indent": ["error", 4],
        "linebreak-style": "off",
        "init-declarations": "off",
        "no-inline-comments": "off",
        "prefer-destructuring": "off",
        "quotes": ["error", "double"]
    }
}