File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
- line-length = 79
1
+ line-length = 100
2
2
3
3
lint.select = [" ALL" ]
4
4
5
5
lint.ignore = [
6
6
" ANN" , # type annotation
7
+ " D107" , # Missing docstring in `__init__`
8
+ " D100" , # Missing docstring in public module
9
+ " D101" , # Missing docstring in public class
10
+ " D102" , # Missing docstring in public method
7
11
" D203" , # 1 blank line required before class docstring
8
12
" D205" , # 1 blank line required between summary line and description
9
13
" D213" , # incompatible. Ignoring `multi-line-summary-second-line`
14
+ " FIX002" , # Line contains TODO, consider resolving the issue
15
+ " TD002" , # Missing author in TODO
16
+ " TD003" , # Missing issue link on the line following this TODO
10
17
" TRY003" , # Avoid specifying long messages outside the exception class
11
18
]
12
19
You can’t perform that action at this time.
0 commit comments