FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
codeql/python/ql/src/Metrics/FLinesOfCode.qhelp at codeql-cli/v2.26.3 · github/codeql · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
github
/
codeql
Public
Notifications
You must be signed in to change notification settings
Fork
2.1k
Star
10k
Code
Issues
998
Pull requests
460
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
codeql
/
python
/
ql
/
src
/
Metrics
/
FLinesOfCode.qhelp
Copy path
More file actions
More file actions
Latest commit
History
History
History
37 lines (30 loc) · 1.32 KB
Breadcrumbs
codeql
/
python
/
ql
/
src
/
Metrics
/
FLinesOfCode.qhelp
Copy path
File metadata and controls
37 lines (30 loc) · 1.32 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
34
35
36
37
<!
DOCTYPE
qhelp
PUBLIC
"-//Semmle//qhelp//EN"
"qhelp.dtd">
<
qhelp
>
<
overview
>
<
p
>This metric measures the number of lines of code in each file. The value excludes docstrings, comments and
blank lines.</
p
>
<
p
>Organizing source into very large files is not recommended because:</
p
>
<
ul
><
li
>it can be difficult to understand and maintain the code, even with good support from
development tools</
li
>
<
li
>it increases the risk that multiple developers will work on the same file at once, and increases the
incidence of merge conflicts</
li
>
<
li
>it may be a symptom of weak code organization, where many different features are handled by functions in
a single file.</
li
>
</
ul
>
</
overview
>
<
recommendation
>
<
p
>The solution depends on the underlying cause:</
p
>
<
ul
><
li
>if individual classes or functions are too large then they should be refactored into smaller
modules</
li
>
<
li
>if the class contains many classes or functions, they should be
moved to their own modules (sometimes in a subsidiary module, where appropriate)</
li
>
<
li
>if the file has been automatically generated by a tool, then it should be left alone.</
li
>
</
ul
>
</
recommendation
>
<
references
>
<
li
>M. Fowler, <
em
>Refactoring</
em
>. Addison-Wesley, 1999.</
li
>
<
li
>Wikipedia: <
a
href
=
"
https://en.wikipedia.org/wiki/Code_refactoring
"
>Code refactoring</
a
>.</
li
>
</
references
>
</
qhelp
>
Back
|
FazBrowse Home
|
New Git URL