{
    "defaultSeverity": "error",
    "jsRules": {
        "no-unused-expression": true
    },
    "linterOptions": {
        "exclude": ["**/*.json", "*.json"]
    },
    "rules": {
        "adjacent-overload-signatures": true,
        "align": {
            "options": ["parameters", "statements"]
        },
        "array-type": [true, "array-simple"],
        "arrow-parens": true,
        "arrow-return-shorthand": true,
        "ban-types": {
            "options": [
                ["Avoid using the `Boolean` type. Did you mean `boolean`?", "Boolean"],
                [
                    "Avoid using the `Function` type. Prefer a specific function type, like `() => void`.",
                    "Function"
                ],
                ["Avoid using the `Number` type. Did you mean `number`?", "Number"],
                ["Avoid using the `Object` type. Did you mean `object`?", "Object"],
                ["Avoid using the `String` type. Did you mean `string`?", "String"],
                ["Avoid using the `Symbol` type. Did you mean `symbol`?", "Symbol"]
            ]
        },
        "callable-types": true,
        "class-name": true,
        "comment-format": {
            "options": ["check-space"]
        },
        "curly": true,
        "cyclomatic-complexity": false,
        "eofline": true,
        "file-name-casing": [true, "kebab-case"],
        "forin": false,
        "import-spacing": true,
        "indent": [true, "spaces", 4],
        "interface-name": [false],
        "interface-over-type-literal": true,
        "jsdoc-format": true,
        "label-position": true,
        "max-classes-per-file": {
            "options": [1]
        },
        "max-file-line-count": [true, 400],
        "max-line-length": [
            true,
            {
                "ignore-pattern": "^import [^,]+ from |^export | implements ",
                "limit": 92
            }
        ],
        "member-access": true,
        "member-ordering": {
            "options": {
                "order": "statics-first"
            }
        },
        "new-parens": true,
        "no-angle-bracket-type-assertion": true,
        "no-any": false,
        "no-arg": true,
        "no-bitwise": false,
        "no-conditional-assignment": true,
        "no-consecutive-blank-lines": true,
        "no-console": true,
        "no-construct": true,
        "no-debugger": true,
        "no-duplicate-super": true,
        "no-duplicate-variable": true,
        "no-empty": true,
        "no-empty-interface": true,
        "no-eval": true,
        "no-internal-module": true,
        "no-invalid-this": false,
        "no-misused-new": true,
        "no-namespace": true,
        "no-parameter-properties": false,
        "no-reference": true,
        "no-reference-import": true,
        "no-shadowed-variable": true,
        "no-string-literal": true,
        "no-string-throw": true,
        "no-switch-case-fall-through": false,
        "no-trailing-whitespace": true,
        "no-unnecessary-initializer": true,
        "no-unsafe-finally": true,
        "no-unused-expression": true,
        "no-use-before-declare": false,
        "no-var-keyword": true,
        "object-literal-key-quotes": {
            "options": ["consistent-as-needed"]
        },
        "object-literal-shorthand": true,
        "object-literal-sort-keys": false,
        "one-line": {
            "options": [
                "check-catch",
                "check-else",
                "check-finally",
                "check-open-brace",
                "check-whitespace"
            ]
        },
        "one-variable-per-declaration": false,
        "only-arrow-functions": {
            "options": ["allow-declarations", "allow-named-functions"]
        },
        "ordered-imports": {
            "options": {
                "import-sources-order": "case-insensitive",
                "module-source-path": "full",
                "named-imports-order": "case-insensitive"
            }
        },
        "prefer-const": true,
        "prefer-for-of": true,
        "quotemark": {
            "options": ["avoid-escape", "double"]
        },
        "semicolon": {
            "options": ["always"]
        },
        "space-before-function-paren": {
            "options": {
                "anonymous": "never",
                "asyncArrow": "always",
                "constructor": "never",
                "method": "never",
                "named": "never"
            }
        },
        "trailing-comma": {
            "options": {
                "esSpecCompliant": true,
                "multiline": "always",
                "singleline": "never"
            }
        },
        "triple-equals": {
            "options": ["allow-null-check"]
        },
        "typedef": false,
        "typedef-whitespace": {
            "options": [
                {
                    "call-signature": "nospace",
                    "index-signature": "nospace",
                    "parameter": "nospace",
                    "property-declaration": "nospace",
                    "variable-declaration": "nospace"
                },
                {
                    "call-signature": "onespace",
                    "index-signature": "onespace",
                    "parameter": "onespace",
                    "property-declaration": "onespace",
                    "variable-declaration": "onespace"
                }
            ]
        },
        "typeof-compare": false,
        "unified-signatures": true,
        "use-isnan": true,
        "variable-name": {
            "options": ["allow-pascal-case", "ban-keywords", "check-format"]
        },
        "whitespace": {
            "options": [
                "check-branch",
                "check-decl",
                "check-module",
                "check-operator",
                "check-preblock",
                "check-rest-spread",
                "check-separator",
                "check-type",
                "check-type-operator"
            ]
        }
    },
    "rulesDirectory": []
}
