We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Custom Processors
1 parent 428fc76 commit 1b217f8Copy full SHA for 1b217f8
docs/src/extend/custom-processors.md
@@ -59,19 +59,19 @@ Reported problems have the following location information in each lint message:
59
type LintMessage = {
60
61
/// The 1-based line number where the message occurs.
62
- line: number;
+ line?: number;
63
64
/// The 1-based column number where the message occurs.
65
- column: number;
+ column?: number;
66
67
/// The 1-based line number of the end location.
68
- endLine: number;
+ endLine?: number;
69
70
/// The 1-based column number of the end location.
71
- endColumn: number;
+ endColumn?: number;
72
73
/// If `true`, this is a fatal error.
74
- fatal: boolean;
+ fatal?: boolean;
75
76
/// Information for an autofix.
77
fix: Fix;
0 commit comments