Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 1.07 KB

ban-ts-ignore.md

File metadata and controls

44 lines (28 loc) · 1.07 KB

Bans “// @ts-ignore” comments from being used (ban-ts-ignore)

This rule has been deprecated in favor of ban-ts-comment

Suppressing TypeScript Compiler Errors can be hard to discover.

DEPRECATED

This rule has been deprecated in favour of the ban-ts-comment rule. It will be removed in a future version of this plugin.

Rule Details

Does not allow the use of // @ts-ignore comments.

The following patterns are considered warnings:

if (false) {
  // @ts-ignore: Unreachable code error
  console.log('hello');
}

The following patterns are not warnings:

if (false) {
  // Compiler warns about unreachable code error
  console.log('hello');
}

When Not To Use It

If you are sure, compiler errors won't affect functionality and you need to disable them.

Further Reading

Compatibility