https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 58dc1e85c4621adbd5038d6afeebc58cdf176b2e authored by Anders Hejlsberg on 29 September 2019, 23:13:24 UTC
Shared caching for identical function types in relationship checking
Tip revision: 58dc1e8
.eslintrc.json
{
    "extends": "../.eslintrc.json",
    "overrides": [
        {
            "files": ["lib/*.d.ts"],
            "rules": {
                "@typescript-eslint/interface-name-prefix": "off",
                "@typescript-eslint/prefer-function-type": "off",
                "@typescript-eslint/unified-signatures": "off",

                // scripts/eslint/rules
                "no-keywords": "off",

                // eslint
                "no-var": "off"
            }
        },
        {
            "files": ["lib/es2019.array.d.ts"],
            "rules": {
                "@typescript-eslint/array-type": "off"
            }
        }
    ]
}
back to top