We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55f44c9 commit ee6eafcCopy full SHA for ee6eafc
configs/eslint.js
@@ -38,6 +38,13 @@ module.exports = {
38
// see for rational https://basarat.gitbook.io/typescript/main-1/defaultisbad
39
'import/no-default-export': 'error',
40
'@typescript-eslint/restrict-template-expressions': 'off',
41
+ '@typescript-eslint/ban-ts-comment': 'warn',
42
+ '@typescript-eslint/no-explicit-any': 'warn',
43
+ '@typescript-eslint/no-unsafe-assignment': 'warn',
44
+ '@typescript-eslint/no-unsafe-call': 'warn',
45
+ '@typescript-eslint/no-unsafe-member-access': 'warn',
46
+ '@typescript-eslint/no-unsafe-return': 'warn',
47
+ '@typescript-eslint/no-this-alias': 'warn',
48
},
49
overrides: [
50
{
0 commit comments