@@ -4,3 +4,83 @@ build-backend = "setuptools.build_meta"
4
4
5
5
[tool .black ]
6
6
skip-string-normalization = true
7
+
8
+ [tool .ruff ]
9
+ line-length = 88 # same as black
10
+
11
+ [tool .ruff .lint ]
12
+ extend-select = [
13
+ " B" ,
14
+ " C4" ,
15
+ " FLY" ,
16
+ " FURB" ,
17
+ " PERF" ,
18
+ " PGH" ,
19
+ " PIE" ,
20
+ " PLE" ,
21
+ " PT" ,
22
+ " PYI" ,
23
+ " Q" ,
24
+ " RSE" ,
25
+ " RUF" ,
26
+ " UP" ,
27
+ ]
28
+ ignore = [
29
+ " B006" , # requires annotations
30
+ " B011" ,
31
+ " B017" , # TODO: enable rule
32
+ " B020" , # TODO: enable rule
33
+ " B028" ,
34
+ " B904" ,
35
+ " C401" ,
36
+ " C408" ,
37
+ " C420" , # TODO: enable rule
38
+ " F401" ,
39
+ " F403" ,
40
+ " F811" ,
41
+ " F841" ,
42
+ " FURB101" ,
43
+ " FURB103" ,
44
+ " FURB113" ,
45
+ " FURB118" , # TODO: enable rule
46
+ " FURB140" , # TODO: enable rule
47
+ " FURB171" , # TODO: enable rule
48
+ " PGH003" , # TODO: enable rule
49
+ " PGH004" , # TODO: enable rule
50
+ " PERF203" ,
51
+ " PIE790" ,
52
+ " PIE794" ,
53
+ " PT001" ,
54
+ " PT004" , # deprecated
55
+ " PT005" , # deprecated
56
+ " PT011" ,
57
+ " PT015" , # TODO: enable rule
58
+ " PT017" , # TODO: enable rule
59
+ " PT018" ,
60
+ " PT019" , # TODO: enable rule
61
+ " PT021" , # TODO: enable rule
62
+ " PYI024" ,
63
+ " RUF002" ,
64
+ " RUF005" ,
65
+ " RUF012" , # requires annotations
66
+ " RUF015" ,
67
+ " UP027" , # deprecated
68
+ " UP031" , # TODO: enable rule
69
+ " UP032" , # TODO: enable rule
70
+ " UP038" , # https://github.com/astral-sh/ruff/issues/7871
71
+ # https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules
72
+ " W191" ,
73
+ " E111" ,
74
+ " E114" ,
75
+ " E117" ,
76
+ " D206" ,
77
+ " D300" ,
78
+ " Q000" ,
79
+ " Q001" ,
80
+ " Q002" ,
81
+ " Q003" ,
82
+ " COM812" ,
83
+ " COM819" ,
84
+ " ISC001" ,
85
+ " ISC002" ,
86
+ ]
0 commit comments