Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions src/file-to-delete.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// This file will be deleted
const oldCode = 'legacy';
function deprecated() {}

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[FO-02] Comment on DELETED FILE - leftFileStart only

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[FO-02] Comment on DELETED FILE - leftFileStart only

// No longer needed
export {};
Comment on lines +1 to +5

Copilot AI Dec 30, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file contains JavaScript code but uses a .txt extension. Consider using the .js extension instead to properly indicate the file type and enable proper syntax highlighting and tooling support.

Suggested change
// This file will be deleted
const oldCode = 'legacy';
function deprecated() {}
// No longer needed
export {};
This file was used for legacy code and is intentionally left without executable content.
It is safe to delete once all references to it have been removed.

Copilot uses AI. Check for mistakes.
5 changes: 5 additions & 0 deletions src/new-file.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// This is a new file
const greeting = 'Hello';

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[FO-01] Comment on NEW FILE - rightFileStart only

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[FO-01] Comment on NEW FILE - rightFileStart only

const target = 'World';
console.log(greeting, target);
// End of new file
Comment on lines +1 to +5

Copilot AI Dec 30, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file contains JavaScript code but uses a .txt extension. Consider using the .js extension instead to properly indicate the file type and enable proper syntax highlighting and tooling support.

Copilot uses AI. Check for mistakes.
4 changes: 4 additions & 0 deletions src/new-name.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// This file was renamed
const content = 'preserved';
const addedLine = 'after rename';

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[FO-03] Comment on RENAMED FILE - track via changeTrackingId

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[FO-03] Comment on RENAMED FILE - track via changeTrackingId

export { content };
Comment on lines +1 to +4

Copilot AI Dec 30, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file contains JavaScript code but uses a .txt extension. Consider using the .js extension instead to properly indicate the file type and enable proper syntax highlighting and tooling support.

Copilot uses AI. Check for mistakes.