Add missing lineNumber property to FixInfo type (fixes #405).

This commit is contained in:
David Anson 2021-06-14 22:30:35 -07:00
parent cebde8f9f6
commit 02240fac98
3 changed files with 13 additions and 7 deletions

View file

@ -316,6 +316,10 @@ type LintError = {
* Fix information.
*/
type FixInfo = {
/**
* Line number (1-based).
*/
lineNumber?: number;
/**
* Column of the fix (1-based).
*/