@@ -193,7 +193,9 @@ https://github.blog/2015-06-08-how-to-undo-almost-anything-with-git/#redo-after-
193
193
fn deny_clippy ( path : & Path , text : & str ) {
194
194
let ignore = & [
195
195
// The documentation in string literals may contain anything for its own purposes
196
- "ide_completion/src/generated_lint_completions.rs" ,
196
+ "ide_db/src/helpers/generated_lints.rs" ,
197
+ // The tests test clippy lint hovers
198
+ "ide/src/hover.rs" ,
197
199
] ;
198
200
if ignore. iter ( ) . any ( |p| path. ends_with ( p) ) {
199
201
return ;
@@ -280,7 +282,7 @@ fn check_todo(path: &Path, text: &str) {
280
282
// `ast::make`.
281
283
"ast/make.rs" ,
282
284
// The documentation in string literals may contain anything for its own purposes
283
- "ide_completion /src/generated_lint_completions .rs" ,
285
+ "ide_db /src/helpers/generated_lints .rs" ,
284
286
] ;
285
287
if need_todo. iter ( ) . any ( |p| path. ends_with ( p) ) {
286
288
return ;
@@ -310,7 +312,7 @@ fn check_dbg(path: &Path, text: &str) {
310
312
"ide_completion/src/completions/postfix.rs" ,
311
313
// The documentation in string literals may contain anything for its own purposes
312
314
"ide_completion/src/lib.rs" ,
313
- "ide_completion /src/generated_lint_completions .rs" ,
315
+ "ide_db /src/helpers/generated_lints .rs" ,
314
316
// test for doc test for remove_dbg
315
317
"src/tests/generated.rs" ,
316
318
] ;
0 commit comments