@@ -22,15 +22,16 @@ line-length = 90
22
22
fix = true
23
23
target-version = " py39"
24
24
25
- select = [
25
+ lint. select = [
26
26
" ALL" ,
27
27
]
28
- ignore = [
28
+ lint. ignore = [
29
29
" A003" , # builtin-attribute-shadowing
30
30
" ARG001" , # unused-function-argument
31
31
" ANN101" , # missing-type-function-argument
32
32
" ANN102" , # missing-type-cls
33
33
" ANN401" , # any-type
34
+ " COM812" , # missing-trailing-comma
34
35
" D100" , # undocumented-public-module
35
36
" D101" , # undocumented-public-class
36
37
" D102" , # undocumented-public-method
@@ -41,10 +42,13 @@ ignore = [
41
42
" D107" , # undocumented-public-init
42
43
" D203" , # one-blank-line-before-class
43
44
" D213" , # multi-line-summary-second-line
45
+ " D413" , # no-blank-line-after-section
44
46
" D417" , # undocumented-param
45
47
" EM101" , # raw-string-in-exception
46
48
" F821" , # undefined-name
49
+ " ISC001" , # single-line-implicit-string-concatenation
47
50
" N999" , # invalid-module-name
48
51
" PD901" , # pandas-df-variable-name
52
+ " PIE790" , # unnecessary-placeholder
49
53
" PLR0913" , # too-many-arguments
50
54
]
0 commit comments