{
    "extends": [
        "tslint:recommended"
    ],
    "rulesDirectory": ["tslint-plugin-prettier"],
    "jsRules": {},
    "rules": {
        "callable-types": true,
        "quotemark": [true, "single", "avoid-escape"],
        "member-access": [false],
        "ordered-imports": [false],
        "member-ordering": [false],
        "trailing-comma": false,
        "arrow-parens": false,
        "only-arrow-functions": false,
        "object-literal-sort-keys": false,
        "interface-over-type-literal": false,
        "max-classes-per-file": false,
        "no-console": false,
        "object-literal-key-quotes": [true, "as-needed"],
        "semicolon": [true, "always", "strict-bound-class-methods"],
        "no-return-await": true,
        "array-type": [true, "array"],
        "eofline": false,
        "no-trailing-whitespace": false,
//        // Make sure that ts-exports are predictable when imported into plain JS code
//        "no-default-export": true,
        "prettier": [true, ".prettierrc_ts.yaml"],
        "max-line-length": [
            true,
            {
                "limit": 120,
                // JSDOC or single line comments
                "ignore-pattern": " *\\*.+ |//.*"
            }
        ]
    }
}
