File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -252,3 +252,35 @@ max-line-length = "88"
252
252
```
253
253
254
254
</details >
255
+
256
+ ### pycodestyle
257
+
258
+ [ pycodestyle] ( https://pycodestyle.pycqa.org/ ) is also a code linter like Flake8.
259
+
260
+ #### Configuration
261
+
262
+ ```
263
+ max_line_length = 88
264
+ ignore = E203
265
+ ```
266
+
267
+ #### Why those options above?
268
+
269
+ pycodestyle should be configured to only complain about lines that surpass ` 88 `
270
+ characters via ` max_line_length = 88 ` .
271
+
272
+ See
273
+ [ Why are Flake8’s E203 and W503 violated?] ( https://black.readthedocs.io/en/stable/faq.html#why-are-flake8-s-e203-and-w503-violated )
274
+
275
+ #### Formats
276
+
277
+ <details >
278
+ <summary >setup.cfg</summary >
279
+
280
+ ``` cfg
281
+ [pycodestyle]
282
+ ignore = E203
283
+ max_line_length = 88
284
+ ```
285
+
286
+ </details >
You can’t perform that action at this time.
0 commit comments