{
    "extends": "tslint:all",
    "rules": {
        // TODO
        "no-magic-numbers": false,
        "no-unsafe-any": false,
        "deprecation": false,

        "arrow-parens": [true, "ban-single-arg-parens"],
        "comment-format": [true, "check-space"],
        "curly": false,
        "interface-name": [true, "never-prefix"],
        "linebreak-style": false,
        "max-classes-per-file": false,
        "member-access": [true, "no-public"],
        "member-ordering": false,
        "no-console": false,
        "no-this-assignment": [true, { "allow-destructuring": true }],
        "object-literal-sort-keys": false,
        "only-arrow-functions": [true, "allow-declarations"],
        "typedef": [true, "call-signature"],

        "completed-docs": false,
        "newline-before-return": false,
        "no-non-null-assertion": false,
        "no-require-imports": false,
        "no-unused-variable": false,
        "no-use-before-declare": false,
        "promise-function-async": false,
        "quotemark": false,
        "switch-default": false,
        "type-literal-delimiter": false
    }
}