Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1b217f8

Browse files
authored
docs: resubmit Custom Processors documentation (#17265)
1 parent 428fc76 commit 1b217f8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/src/extend/custom-processors.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,19 +59,19 @@ Reported problems have the following location information in each lint message:
5959
type LintMessage = {
6060

6161
/// The 1-based line number where the message occurs.
62-
line: number;
62+
line?: number;
6363

6464
/// The 1-based column number where the message occurs.
65-
column: number;
65+
column?: number;
6666

6767
/// The 1-based line number of the end location.
68-
endLine: number;
68+
endLine?: number;
6969

7070
/// The 1-based column number of the end location.
71-
endColumn: number;
71+
endColumn?: number;
7272

7373
/// If `true`, this is a fatal error.
74-
fatal: boolean;
74+
fatal?: boolean;
7575

7676
/// Information for an autofix.
7777
fix: Fix;

0 commit comments

Comments
 (0)