@@ -154,7 +154,7 @@ early_lint_methods!(
154154 [
155155 pub BuiltinCombinedPreExpansionLintPass ,
156156 [
157- KeywordIdents : KeywordIdents ,
157+ // KeywordIdents: KeywordIdents,
158158 ]
159159 ]
160160) ;
@@ -164,24 +164,24 @@ early_lint_methods!(
164164 [
165165 pub BuiltinCombinedEarlyLintPass ,
166166 [
167- UnusedParens : UnusedParens :: default ( ) ,
168- UnusedBraces : UnusedBraces ,
169- UnusedImportBraces : UnusedImportBraces ,
170- UnsafeCode : UnsafeCode ,
171- SpecialModuleName : SpecialModuleName ,
172- AnonymousParameters : AnonymousParameters ,
173- EllipsisInclusiveRangePatterns : EllipsisInclusiveRangePatterns :: default ( ) ,
174- NonCamelCaseTypes : NonCamelCaseTypes ,
175- DeprecatedAttr : DeprecatedAttr :: default ( ) ,
176- WhileTrue : WhileTrue ,
177- NonAsciiIdents : NonAsciiIdents ,
178- HiddenUnicodeCodepoints : HiddenUnicodeCodepoints ,
179- IncompleteInternalFeatures : IncompleteInternalFeatures ,
180- RedundantSemicolons : RedundantSemicolons ,
181- UnusedDocComment : UnusedDocComment ,
182- Expr2024 : Expr2024 ,
183- Precedence : Precedence ,
184- DoubleNegations : DoubleNegations ,
167+ // UnusedParens: UnusedParens::default(),
168+ // UnusedBraces: UnusedBraces,
169+ // UnusedImportBraces: UnusedImportBraces,
170+ // UnsafeCode: UnsafeCode,
171+ // SpecialModuleName: SpecialModuleName,
172+ // AnonymousParameters: AnonymousParameters,
173+ // EllipsisInclusiveRangePatterns: EllipsisInclusiveRangePatterns::default(),
174+ // NonCamelCaseTypes: NonCamelCaseTypes,
175+ // DeprecatedAttr: DeprecatedAttr::default(),
176+ // WhileTrue: WhileTrue,
177+ // NonAsciiIdents: NonAsciiIdents,
178+ // HiddenUnicodeCodepoints: HiddenUnicodeCodepoints,
179+ // IncompleteInternalFeatures: IncompleteInternalFeatures,
180+ // RedundantSemicolons: RedundantSemicolons,
181+ // UnusedDocComment: UnusedDocComment,
182+ // Expr2024: Expr2024,
183+ // Precedence: Precedence,
184+ // DoubleNegations: DoubleNegations,
185185 ]
186186 ]
187187) ;
@@ -191,60 +191,60 @@ late_lint_methods!(
191191 [
192192 BuiltinCombinedModuleLateLintPass ,
193193 [
194- ForLoopsOverFallibles : ForLoopsOverFallibles ,
195- DefaultCouldBeDerived : DefaultCouldBeDerived :: default ( ) ,
196- DerefIntoDynSupertrait : DerefIntoDynSupertrait ,
197- DropForgetUseless : DropForgetUseless ,
198- ImproperCTypesDeclarations : ImproperCTypesDeclarations ,
199- ImproperCTypesDefinitions : ImproperCTypesDefinitions ,
200- InvalidFromUtf8 : InvalidFromUtf8 ,
201- VariantSizeDifferences : VariantSizeDifferences ,
202- PathStatements : PathStatements ,
203- LetUnderscore : LetUnderscore ,
204- InvalidReferenceCasting : InvalidReferenceCasting ,
194+ // ForLoopsOverFallibles: ForLoopsOverFallibles,
195+ // DefaultCouldBeDerived: DefaultCouldBeDerived::default(),
196+ // DerefIntoDynSupertrait: DerefIntoDynSupertrait,
197+ // DropForgetUseless: DropForgetUseless,
198+ // ImproperCTypesDeclarations: ImproperCTypesDeclarations,
199+ // ImproperCTypesDefinitions: ImproperCTypesDefinitions,
200+ // InvalidFromUtf8: InvalidFromUtf8,
201+ // VariantSizeDifferences: VariantSizeDifferences,
202+ // PathStatements: PathStatements,
203+ // LetUnderscore: LetUnderscore,
204+ // InvalidReferenceCasting: InvalidReferenceCasting,
205205 // Depends on referenced function signatures in expressions
206- UnusedResults : UnusedResults ,
207- UnitBindings : UnitBindings ,
208- NonUpperCaseGlobals : NonUpperCaseGlobals ,
209- NonShorthandFieldPatterns : NonShorthandFieldPatterns ,
210- UnusedAllocation : UnusedAllocation ,
206+ // UnusedResults: UnusedResults,
207+ // UnitBindings: UnitBindings,
208+ // NonUpperCaseGlobals: NonUpperCaseGlobals,
209+ // NonShorthandFieldPatterns: NonShorthandFieldPatterns,
210+ // UnusedAllocation: UnusedAllocation,
211211 // Depends on types used in type definitions
212- MissingCopyImplementations : MissingCopyImplementations ,
212+ // MissingCopyImplementations: MissingCopyImplementations,
213213 // Depends on referenced function signatures in expressions
214- PtrNullChecks : PtrNullChecks ,
215- MutableTransmutes : MutableTransmutes ,
216- TypeAliasBounds : TypeAliasBounds ,
217- TrivialConstraints : TrivialConstraints ,
218- TypeLimits : TypeLimits :: new( ) ,
219- NonSnakeCase : NonSnakeCase ,
220- InvalidNoMangleItems : InvalidNoMangleItems ,
214+ // PtrNullChecks: PtrNullChecks,
215+ // MutableTransmutes: MutableTransmutes,
216+ // TypeAliasBounds: TypeAliasBounds,
217+ // TrivialConstraints: TrivialConstraints,
218+ // TypeLimits: TypeLimits::new(),
219+ // NonSnakeCase: NonSnakeCase,
220+ // InvalidNoMangleItems: InvalidNoMangleItems,
221221 // Depends on effective visibilities
222- UnreachablePub : UnreachablePub ,
223- ExplicitOutlivesRequirements : ExplicitOutlivesRequirements ,
224- InvalidValue : InvalidValue ,
225- DerefNullPtr : DerefNullPtr ,
226- UnstableFeatures : UnstableFeatures ,
227- UngatedAsyncFnTrackCaller : UngatedAsyncFnTrackCaller ,
228- ShadowedIntoIter : ShadowedIntoIter ,
229- DropTraitConstraints : DropTraitConstraints ,
230- DanglingPointers : DanglingPointers ,
231- NonPanicFmt : NonPanicFmt ,
232- NoopMethodCall : NoopMethodCall ,
233- EnumIntrinsicsNonEnums : EnumIntrinsicsNonEnums ,
234- InvalidAtomicOrdering : InvalidAtomicOrdering ,
235- AsmLabels : AsmLabels ,
236- OpaqueHiddenInferredBound : OpaqueHiddenInferredBound ,
237- MultipleSupertraitUpcastable : MultipleSupertraitUpcastable ,
238- MapUnitFn : MapUnitFn ,
239- MissingDebugImplementations : MissingDebugImplementations ,
240- MissingDoc : MissingDoc ,
241- AsyncClosureUsage : AsyncClosureUsage ,
242- AsyncFnInTrait : AsyncFnInTrait ,
243- NonLocalDefinitions : NonLocalDefinitions :: default ( ) ,
244- ImplTraitOvercaptures : ImplTraitOvercaptures ,
245- IfLetRescope : IfLetRescope :: default ( ) ,
246- StaticMutRefs : StaticMutRefs ,
247- UnqualifiedLocalImports : UnqualifiedLocalImports ,
222+ // UnreachablePub: UnreachablePub,
223+ // ExplicitOutlivesRequirements: ExplicitOutlivesRequirements,
224+ // InvalidValue: InvalidValue,
225+ // DerefNullPtr: DerefNullPtr,
226+ // UnstableFeatures: UnstableFeatures,
227+ // UngatedAsyncFnTrackCaller: UngatedAsyncFnTrackCaller,
228+ // ShadowedIntoIter: ShadowedIntoIter,
229+ // DropTraitConstraints: DropTraitConstraints,
230+ // DanglingPointers: DanglingPointers,
231+ // NonPanicFmt: NonPanicFmt,
232+ // NoopMethodCall: NoopMethodCall,
233+ // EnumIntrinsicsNonEnums: EnumIntrinsicsNonEnums,
234+ // InvalidAtomicOrdering: InvalidAtomicOrdering,
235+ // AsmLabels: AsmLabels,
236+ // OpaqueHiddenInferredBound: OpaqueHiddenInferredBound,
237+ // MultipleSupertraitUpcastable: MultipleSupertraitUpcastable,
238+ // MapUnitFn: MapUnitFn,
239+ // MissingDebugImplementations: MissingDebugImplementations,
240+ // MissingDoc: MissingDoc,
241+ // AsyncClosureUsage: AsyncClosureUsage,
242+ // AsyncFnInTrait: AsyncFnInTrait,
243+ // NonLocalDefinitions: NonLocalDefinitions::default(),
244+ // ImplTraitOvercaptures: ImplTraitOvercaptures,
245+ // IfLetRescope: IfLetRescope::default(),
246+ // StaticMutRefs: StaticMutRefs,
247+ // UnqualifiedLocalImports: UnqualifiedLocalImports,
248248 ]
249249 ]
250250) ;
0 commit comments