this repo has no description
1{
2 "extends": ["plugin:@typescript-eslint/strict-type-checked"],
3 "plugins": ["@typescript-eslint"],
4 "parser": "@typescript-eslint/parser",
5 "parserOptions": {
6 "project": "./tsconfig.json"
7 },
8 "rules": {
9 "@typescript-eslint/no-explicit-any": "off",
10 "@typescript-eslint/no-misused-promises": "off",
11 "@typescript-eslint/no-non-null-assertion": "off",
12 "@typescript-eslint/no-unnecessary-condition": "off",
13 "@typescript-eslint/no-unsafe-argument": "off",
14 "@typescript-eslint/no-unsafe-assignment": "off",
15 "@typescript-eslint/no-unsafe-call": "off",
16 "@typescript-eslint/no-unsafe-member-access": "off",
17 "@typescript-eslint/no-unsafe-return": "off",
18 "@typescript-eslint/restrict-plus-operands": "off",
19 "@typescript-eslint/restrict-template-expressions": "off",
20 "@typescript-eslint/unified-signatures": "off"
21 },
22 "ignorePatterns": ["dist", "node_modules"],
23 "root": true
24}