astro-ghostcms/.pnpm-store/v3/files/57/f6ad67cba4a3ea8dcc7ee080589...

152 lines
4.2 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
description: 'Disallow `@ts-<directive>` comments or require descriptions after directives.'
---
> 🛑 This file is source code, not the primary documentation location! 🛑
>
> See **https://typescript-eslint.io/rules/ban-ts-comment** for documentation.
TypeScript provides several directive comments that can be used to alter how it processes files.
Using these to suppress TypeScript compiler errors reduces the effectiveness of TypeScript overall.
Instead, it's generally better to correct the types of code, to make directives unnecessary.
The directive comments supported by TypeScript are:
```ts
// @ts-expect-error
// @ts-ignore
// @ts-nocheck
// @ts-check
```
This rule lets you set which directive comments you want to allow in your codebase.
## Options
By default, only `@ts-check` is allowed, as it enables rather than suppresses errors.
### `ts-expect-error`, `ts-ignore`, `ts-nocheck`, `ts-check` directives
A value of `true` for a particular directive means that this rule will report if it finds any usage of said directive.
<!--tabs-->
#### ❌ Incorrect
```ts option='{ "ts-ignore": true }'
if (false) {
// @ts-ignore: Unreachable code error
console.log('hello');
}
if (false) {
/*
@ts-ignore: Unreachable code error
*/
console.log('hello');
}
```
#### ✅ Correct
```ts option='{ "ts-ignore": true }'
if (false) {
// Compiler warns about unreachable code error
console.log('hello');
}
```
### `allow-with-description`
A value of `'allow-with-description'` for a particular directive means that this rule will report if it finds a directive that does not have a description following the directive (on the same line).
For example, with `{ 'ts-expect-error': 'allow-with-description' }`:
<!--tabs-->
#### ❌ Incorrect
```ts option='{ "ts-expect-error": "allow-with-description" }'
if (false) {
// @ts-expect-error
console.log('hello');
}
if (false) {
/* @ts-expect-error */
console.log('hello');
}
```
#### ✅ Correct
```ts option='{ "ts-expect-error": "allow-with-description" }'
if (false) {
// @ts-expect-error: Unreachable code error
console.log('hello');
}
if (false) {
/*
@ts-expect-error: Unreachable code error
*/
console.log('hello');
}
```
### `descriptionFormat`
For each directive type, you can specify a custom format in the form of a regular expression. Only description that matches the pattern will be allowed.
For example, with `{ 'ts-expect-error': { descriptionFormat: '^: TS\\d+ because .+$' } }`:
<!--tabs-->
#### ❌ Incorrect
<!-- prettier-ignore -->
```ts option='{ "ts-expect-error": { "descriptionFormat": "^: TS\\\\d+ because .+$" } }'
// @ts-expect-error: the library definition is wrong
const a = doSomething('hello');
```
#### ✅ Correct
<!-- prettier-ignore -->
```ts option='{ "ts-expect-error": { "descriptionFormat": "^: TS\\\\d+ because .+$" } }'
// @ts-expect-error: TS1234 because the library definition is wrong
const a = doSomething('hello');
```
### `minimumDescriptionLength`
Use `minimumDescriptionLength` to set a minimum length for descriptions when using the `allow-with-description` option for a directive.
For example, with `{ 'ts-expect-error': 'allow-with-description', minimumDescriptionLength: 10 }` the following pattern is:
<!--tabs-->
#### ❌ Incorrect
```ts option='{ "ts-expect-error": "allow-with-description", "minimumDescriptionLength": 10 }'
if (false) {
// @ts-expect-error: TODO
console.log('hello');
}
```
#### ✅ Correct
```ts option='{ "ts-expect-error": "allow-with-description", "minimumDescriptionLength": 10 }'
if (false) {
// @ts-expect-error The rationale for this override is described in issue #1337 on GitLab
console.log('hello');
}
```
## When Not To Use It
If your project or its dependencies were not architected with strong type safety in mind, it can be difficult to always adhere to proper TypeScript semantics.
You might consider using [ESLint disable comments](https://eslint.org/docs/latest/use/configure/rules#using-configuration-comments-1) for those specific situations instead of completely disabling this rule.
## Further Reading
- TypeScript [Type Checking JavaScript Files](https://www.typescriptlang.org/docs/handbook/type-checking-javascript-files.html)