Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14092275
D21357.id50836.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D21357.id50836.diff
View Options
diff --git a/src/lint/renderer/ArcanistConsoleLintRenderer.php b/src/lint/renderer/ArcanistConsoleLintRenderer.php
--- a/src/lint/renderer/ArcanistConsoleLintRenderer.php
+++ b/src/lint/renderer/ArcanistConsoleLintRenderer.php
@@ -122,6 +122,41 @@
$old_impact = substr_count($original, "\n") + 1;
$start = $line;
+ // See PHI1782. If a linter raises a message at a line that does not
+ // exist, just render a warning message.
+
+ // Linters are permitted to raise a warning at the very end of a file.
+ // For example, if a file is 13 lines long, it is valid to raise a message
+ // on line 14 as long as the character position is 1 or unspecified and
+ // there is no "original" text.
+
+ $max_old = count($old_lines);
+
+ $invalid_position = false;
+ if ($start > ($max_old + 1)) {
+ $invalid_position = true;
+ } else if ($start > $max_old) {
+ if (strlen($original)) {
+ $invalid_position = true;
+ } else if ($char !== null && $char !== 1) {
+ $invalid_position = true;
+ }
+ }
+
+ if ($invalid_position) {
+ $warning = $this->renderLine(
+ $start,
+ pht(
+ '(This message was raised at line %s, but the file only has '.
+ '%s line(s).)',
+ new PhutilNumber($start),
+ new PhutilNumber($max_old)),
+ false,
+ '?');
+
+ return $warning."\n\n";
+ }
+
if ($message->isPatchable()) {
$patch_offset = $line_map[$line] + ($char - 1);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Nov 26, 5:13 AM (20 h, 27 m)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6788199
Default Alt Text
D21357.id50836.diff (1 KB)
Attached To
Mode
D21357: When a linter raises a message at a nonexistent line, don't fatal during rendering
Attached
Detach File
Event Timeline
Log In to Comment