395:9 error Do not use // @ts-ignore comments because they suppress compilation errors @typescript-eslint/ban-ts-ignore code example
Example: Do not use "// @ts-ignore" comments because they suppress compilation errors
/*
Step 1: Add this rule to `.eslintrc` file
Step 2: Restart local server
*/
"rules": {
"@typescript-eslint/ban-ts-ignore": "off"
}
...