{
    "defaultSeverity": "error",
    "extends": [
        "tslint:recommended"
    ],
    "jsRules": {},
    "rules": {
        "quotemark": false,
        "trailing-comma": [
            true,
            {
                "multiline": {
                    "objects": "always",
                    "arrays": "always",
                    "functions": "always",
                    "typeLiterals": "ignore"
                },
                "esSpecCompliant": true
            }
        ],
        "ordered-imports": false,
        "interface-name": true,
        "align": false,
        "interface-over-type-literal": false,
        "object-literal-sort-keys": false,
        "no-var-keyword": false,
        "array-type": [
            true,
            "generic"
        ],
        "prefer-const": false,
        "one-variable-per-declaration": false,
        "object-literal-shorthand": false,
        "variable-name": false,
        "forin": false,
        "member-ordering": false,
        "member-access": false,
        "no-string-literal": false,
        "jsdoc-format": false,
        "no-console": false,
        "max-classes-per-file": false,
        "prefer-for-of": false,
        "object-literal-key-quotes": false,
        "no-eval": false, // already handled in eslint
        "no-conditional-assignment": false, // already handled in eslint
        "no-reference": false,

        // when a class declaration has `extends` and `implements` on separate lines and class body doesn't start with a blank line
        // the first line of the class body looks visually belonging to `extends`/`implements` parts of class declaration
        "one-line": false,

        "only-arrow-functions": false
    },
    "rulesDirectory": [],
    "linterOptions": {
        "exclude": [
            "test-server/**",
            "node_modules/**",
            "e2e/**",
            "build-tools/**",
            "scripts/extensions/**/node_modules/**",
            "end-to-end-testing-helpers/dist/**",
            "end-to-end-testing-helpers/node_modules/**"
        ]
    }
}
