File tree 1 file changed +13
-1
lines changed
1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,19 @@ How to troubleshoot:
45
45
- [ ] Ensure you are not running an analysis on code that depends on files/packages outside the scope of the analyzed elements.
46
46
- [ ] If using CGO, ensure all require system libraries are installed.
47
47
48
- ## Why running with ` --fast ` is slow on the first run
48
+ ## Why is it not possible to skip/ignore ` typecheck ` errors?
49
+
50
+ For mainly the same reasons that you cannot compile when you have a compiler error.
51
+
52
+ ` typecheck ` errors are reported in the same style as linter reports/issues,
53
+ but are completely different because they are related to problems that block the analysis (` typecheck ` is not a linter).
54
+
55
+ When there are ` typecheck ` errors,
56
+ most linters are not able to perform the analysis,
57
+ and they simply do not produce any reports,
58
+ so it's not possible to skip/ignore ` typecheck ` errors.
59
+
60
+ ## Why running with ` --fast ` is slow on the first run?
49
61
50
62
Because the first run caches type information. All subsequent runs will be fast.
51
63
Usually this options is used during development on local machine and compilation was already performed.
You can’t perform that action at this time.
0 commit comments