mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-17 22:40:13 +01:00
Add missing lineNumber property to FixInfo type (fixes #405).
This commit is contained in:
parent
cebde8f9f6
commit
02240fac98
3 changed files with 13 additions and 7 deletions
4
lib/markdownlint.d.ts
vendored
4
lib/markdownlint.d.ts
vendored
|
|
@ -316,6 +316,10 @@ type LintError = {
|
|||
* Fix information.
|
||||
*/
|
||||
type FixInfo = {
|
||||
/**
|
||||
* Line number (1-based).
|
||||
*/
|
||||
lineNumber?: number;
|
||||
/**
|
||||
* Column of the fix (1-based).
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue