fix(lint): appease linter complaints

tauraamui created

Change summary

internal/fsext/ls.go                               | 6 ++++--
internal/tui/components/chat/editor/editor_test.go | 1 -
2 files changed, 4 insertions(+), 3 deletions(-)

Detailed changes

internal/fsext/ls.go 🔗

@@ -198,8 +198,10 @@ func (dl *directoryLister) getIgnore(path string) ignore.IgnoreParser {
 	})
 }
 
-type DirectoryLister func(initialPath string, ignorePatterns []string, limit int) ([]string, bool, error)
-type DirectoryListerResolver func() DirectoryLister
+type (
+	DirectoryLister         func(initialPath string, ignorePatterns []string, limit int) ([]string, bool, error)
+	DirectoryListerResolver func() DirectoryLister
+)
 
 func ResolveDirectoryLister() DirectoryLister {
 	return listDirectory

internal/tui/components/chat/editor/editor_test.go 🔗

@@ -208,7 +208,6 @@ func TestEditorAutoCompletion_OnNonImageFileFullPathInsertedFromQuery(t *testing
 	m, msg = simulateUpdate(testEditor, keyPressMsg)
 	testEditor = m.(*editorCmp)
 
-
 	selectMsg := completions.SelectCompletionMsg{
 		Value: FileCompletionItem{
 			"./root/project/random.txt",