You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@ Fui
6
6
7
7
Find unused Objective-C imports.
8
8
9
+
> **What fui does:** finds header (`.h`) files that are never imported anywhere in your project — i.e. classes that can potentially be deleted entirely.
10
+
>
11
+
> **What fui does not do:** find `#import` statements within a file that are unused by that file's code. For that, use a tool like [Clang's unused-includes warning](https://clang.llvm.org/docs/DiagnosticsReference.html) or AppCode.
12
+
9
13
# Table of Contents
10
14
11
15
-[Usage](#usage)
@@ -40,7 +44,7 @@ fui help
40
44
fui find
41
45
```
42
46
43
-
The `find` command lists all the files that contain unused imports and exits with the number of files found.
47
+
The `find` command lists all header (`.h`) files that are not imported anywhere in the project, and exits with the number of such files found.
0 commit comments