{
    "defaultSeverity": "error",
    "extends": [
        "tslint:recommended"
    ],
    "rulesDirectory": [],
    "rules": {
        "quotemark": [true, "double"],
        "variable-name": false,
        "arrow-parens": false,
        "object-literal-key-quotes": false,
        "object-literal-sort-keys": false,
        "object-literal-shorthand": false,
        "ordered-imports": false,
        "no-console": false,
        "curly": false,
        "adjacent-overload-signatures": false,
        "no-bitwise": false,
        "max-line-length": false,
        "no-misused-new": false,
        "forin": false,
        "interface-name": [true, "never-prefix"],
        "member-ordering": [true, {"order": "fields-first"}],
        "whitespace": [
            true,
            "check-decl",
            "check-operator",
            "check-module",
            "check-separator",
            "check-rest-spread",
            "check-branch",
            "check-type-operator",
            "check-type",
            "check-typecast",
            "check-preblock"
        ]
    },
    "linterOptions": {
        "include": [
            "declaration/**/*"
        ],
        "exclude": [
            "node_modules/**/*"
        ]
    }
}
