@@ -2,9 +2,13 @@ fix = true # auto-fix findings
22line-length = 88 # same as Black
33target-version = " py313" # Python 3.13
44
5+ # extend-exclude = ["src/MyBadFile1.py"]
6+
7+
58[lint ]
69# comment this out to use only default rules (["E4", "E7", "E9", "F"])
7- select = [" ALL" ] # activate all rules
10+ select = [" ALL" ] # activate all rules
11+ fixable = [" ALL" ] # fix for all enabled rules
812
913# add some more rules to include
1014# extend-select = ["B", "Q", "E", "W"]
@@ -13,17 +17,18 @@ select = ["ALL"] # activate all rules
1317extend-ignore = [
1418 " COM812" , # missing-trailing-comma,
1519 " D200" , # fits-on-one-line"
20+ " D203" , # incorrect-blank-line-before-class
1621 " D211" , # blank-line-before-class
1722 " D212" , # multi-line-summary-second-line
1823 " ERA" , # commented-out code
1924 " FIX002" , # line-contains-todo
2025 " ISC001" , # implicit-str-concat
21- " PD901" , # df name
2226 " PGH003" , # blanket-type-ignore
2327 " RET504" , # unnecessary-assign
2428 " T201" , # print
2529 " TD002" , # missing-todo-author
2630 " TD003" , # missing-todo-link
31+ " S101" , # use of asserts
2732]
2833
2934
0 commit comments