@luvies/lazy
Version:
A linq-like lazy iteration module that aims to support deno, node & browser
32 lines (31 loc) • 1.04 kB
JSON
{
"root": true,
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": "./node_modules/@luvies/config/eslint.base.json",
"env": {
"es6": true,
"node": true
},
"rules": {
"max-classes-per-file": "off",
"no-constant-condition": "off",
"no-duplicate-imports": "off",
"no-implicit-coercion": "off",
"no-param-reassign": "off",
"prefer-template": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unnecessary-condition": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/unbound-method": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-shadow": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"import/extensions": "off"
}
}