forked from github/codeql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFLinesOfCode.qhelp
More file actions
33 lines (28 loc) · 759 Bytes
/
FLinesOfCode.qhelp
File metadata and controls
33 lines (28 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE qhelp PUBLIC
"-//Semmle//qhelp//EN"
"qhelp.dtd">
<qhelp>
<overview>
<include src="FLinesOfCodeOverview.inc.qhelp" />
</overview>
<recommendation>
<p>
The solution depends on the reason for the high number of lines:
</p>
<ul>
<li>
If the file contains one or more very large functions, you should decompose them into smaller
functions by means of the Extract Function refactoring.
</li>
<li>
If the file contains many smaller functions, you should try to split up the file into multiple
smaller files.
</li>
<li>
If the file has been automatically generated by a tool, no changes are required because the file
will not be maintained by a programmer.
</li>
</ul>
</recommendation>
<include src="FLinesOfCodeReferences.inc.qhelp" />
</qhelp>