File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -100,19 +100,26 @@ line-ending = "lf" # Use UNIX `\n` line endings for all files
100
100
[tool .ruff .lint ]
101
101
select = [
102
102
" B" , # flake8-bugbear
103
+ " BLE" , # flake8-blind-except
103
104
" E" , # pycodestyle
104
105
" F" , # pyflakes
105
106
" FA" , # flake8-future-annotations
106
107
" FLY" , # flynt
107
108
" I" , # isort
109
+ " ICN" , # flake8-import-conventions
108
110
" ISC" , # flake8-implicit-str-concat
109
111
" NPY" , # numpy
110
112
" PD" , # pandas-vet
113
+ " PGH" , # pygrep-hooks
111
114
" PIE" , # flake8-pie
112
115
" PL" , # pylint
116
+ " RSE" , # flake8-raise
113
117
" SIM" , # flake8-simplify
118
+ " TCH" , # flake8-type-checking
119
+ " TID" , # flake8-tidy-imports
114
120
" UP" , # pyupgrade
115
121
" W" , # pycodestyle warnings
122
+ " YTT" , # flake8-2020
116
123
]
117
124
ignore = [
118
125
" E501" , # Avoid enforcing line-length violations
You can’t perform that action at this time.
0 commit comments