-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathDocStrings.ql
More file actions
51 lines (45 loc) · 1.43 KB
/
DocStrings.ql
File metadata and controls
51 lines (45 loc) · 1.43 KB
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
* readability
* @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
private import semmle.python.dataflow.new.internal.DataFlowDispatch
predicate needs_docstring(Scope s) {
s.isPublic() and
(
not s instanceof Function
or
function_needs_docstring(s)
)
}
predicate function_needs_docstring(FunctionMetrics f) {
not exists(Function base |
DuckTyping::overridesMethod(f, _, base) and
not function_needs_docstring(base)
) and
f.getName() != "lambda" and
(f.getNumberOfLinesOfCode() - count(f.getADecorator())) > 2 and
not DuckTyping::isPropertyAccessor(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."