FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
codeql/python/ql/src/Statements/DocStrings.ql at codeql-cli/v2.16.0 · 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
462
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
/
Statements
/
DocStrings.ql
Copy path
More file actions
More file actions
Latest commit
History
History
History
51 lines (45 loc) · 1.45 KB
Breadcrumbs
codeql
/
python
/
ql
/
src
/
Statements
/
DocStrings.ql
Copy path
File metadata and controls
51 lines (45 loc) · 1.45 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
* @name Missing docstring
* @description Omitting documentation strings from public classes, functions or methods
* makes it more difficult for other developers to maintain the code.
* @kind problem
* @tags maintainability
* @problem.severity recommendation
* @sub-severity low
* @precision medium
* @id py/missing-docstring
*/
/*
* NOTE: precision of 'medium' reflects the lack of precision in the underlying rule.
* Do we care whether a function has a docstring? That often depends on the reader of that docstring.
*/
import
python
predicate
needs_docstring
(
Scope
s
)
{
s
.
isPublic
(
)
and
(
not
s
instanceof
Function
or
function_needs_docstring
(
s
)
)
}
predicate
function_needs_docstring
(
Function
f
)
{
not
exists
(
FunctionValue
fo
,
FunctionValue
base
|
fo
.
overrides
(
base
)
and
fo
.
getScope
(
)
=
f
|
not
function_needs_docstring
(
base
.
getScope
(
)
)
)
and
f
.
getName
(
)
!=
"lambda"
and
(
f
.
getMetrics
(
)
.
getNumberOfLinesOfCode
(
)
-
count
(
f
.
getADecorator
(
)
)
)
>
2
and
not
exists
(
PythonPropertyObject
p
|
p
.
getGetter
(
)
.
getFunction
(
)
=
f
or
p
.
getSetter
(
)
.
getFunction
(
)
=
f
)
}
string
scope_type
(
Scope
s
)
{
result
=
"Module"
and
s
instanceof
Module
and
not
s
.
(
Module
)
.
isPackage
(
)
or
result
=
"Class"
and
s
instanceof
Class
or
result
=
"Function"
and
s
instanceof
Function
}
from
Scope
s
where
needs_docstring
(
s
)
and
not
exists
(
s
.
getDocString
(
)
)
select
s
,
scope_type
(
s
)
+
" "
+
s
.
getName
(
)
+
" does not have a docstring."
Back
|
FazBrowse Home
|
New Git URL