File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -112,6 +112,10 @@ exclude = [
112
112
" .tox" ,
113
113
" .eggs" ,
114
114
]
115
+ line-length = 88
116
+ target-version = " py310"
117
+
118
+ [tool .ruff .lint ]
115
119
ignore = [
116
120
" D100" ,
117
121
" D101" ,
@@ -132,15 +136,14 @@ ignore = [
132
136
" E741" ,
133
137
" F841" ,
134
138
]
135
- line-length = 88
136
139
select = [
137
140
" D" ,
138
141
" E" ,
139
142
" F" ,
140
143
" W" ,
141
144
]
142
145
143
- # The following error codes are not supported by ruff v0.0.240
146
+ # The following error codes are not supported by ruff v0.2.0
144
147
# They are planned and should be selected once implemented
145
148
# even if they are deselected by default.
146
149
# These are primarily whitespace/corrected by autoformatters (which we don't use).
@@ -158,12 +161,10 @@ external = [
158
161
" E703" ,
159
162
]
160
163
161
- target-version = " py310"
162
-
163
- [tool .ruff .pydocstyle ]
164
+ [tool .ruff .lint .pydocstyle ]
164
165
convention = " numpy"
165
166
166
- [tool .ruff .per-file-ignores ]
167
+ [tool .ruff .lint . per-file-ignores ]
167
168
"doc/conf.py" = [" E402" ]
168
169
"galleries/examples/animation/frame_grabbing_sgskip.py" = [" E402" ]
169
170
"galleries/examples/lines_bars_and_markers/marker_reference.py" = [" E402" ]
You can’t perform that action at this time.
0 commit comments