RED-3800: ESLint rules

This commit is contained in:
Adina Țeudan 2022-06-20 19:41:09 +03:00
parent 0bfd393231
commit 526906f744

View File

@ -8,7 +8,14 @@
"parserOptions": {
"project": ["apps/red-ui/tsconfig.json"]
},
"extends": ["plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/recommended-requiring-type-checking"]
"extends": ["plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/recommended-requiring-type-checking"],
"rules": {
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/unbound-method": "off"
}
}
]
}