{
    "rules": {
        "typedef": [
            true,
            "call-signature",
            "parameter",
            "property-declaration",
            "member-variable-declaration"
        ],
        "triple-equals": [
            true
        ],
        "no-use-before-declare": true,
        "no-unused-variable": [
            true,
            "react"
        ],
        "no-switch-case-fall-through": true,
        "no-shadowed-variable": true,
        "no-invalid-this": true,
        "no-eval": true,
        "no-empty": true,
        "no-duplicate-variable": true,
        "no-debugger": true,
        "no-conditional-assignment": true,
        "no-arg": true,
        "no-var-requires": true,
        "eofline": true,
        "no-console": [
          true,
          "log"
        ],
        "indent": [
            true,
            "spaces"
        ],
        "no-require-imports": true,
        "no-trailing-whitespace": true,
        "class-name": true,
        "new-parens": true,
        "no-consecutive-blank-lines": true,
        "quotemark": [
            true,
            "single",
            "jsx-double"
        ],
        "semicolon": [
            true,
            "always"
        ],
        "variable-name": [
            true,
            "ban-keywords",
            "check-format",
            "allow-leading-underscore",
            "allow-snake-case",
            "allow-pascal-case"
        ],
        "whitespace": [
            true,
            "check-branch",
            "check-operator",
            "check-module",
            "check-separator",
            "check-type",
            "check-typecast"
        ]

    }
}