Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions tests/lib/rules/first-attribute-linebreak.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,9 @@ name="John Doe"
{
message: 'Expected a linebreak before this attribute.',
line: 8,
column: 20
column: 20,
endLine: 8,
endColumn: 35
}
]
},
Expand Down Expand Up @@ -203,12 +205,16 @@ name="John Doe"
{
message: 'Expected no linebreak before this attribute.',
line: 4,
column: 11
column: 11,
endLine: 4,
endColumn: 26
},
{
message: 'Expected no linebreak before this attribute.',
line: 13,
column: 11
column: 11,
endLine: 13,
endColumn: 26
}
]
},
Expand Down Expand Up @@ -254,12 +260,16 @@ name="John Doe"
{
message: 'Expected a linebreak before this attribute.',
line: 8,
column: 20
column: 20,
endLine: 8,
endColumn: 35
},
{
message: 'Expected a linebreak before this attribute.',
line: 15,
column: 20
column: 20,
endLine: 15,
endColumn: 35
}
]
}
Expand Down