Skip to content

Commit

Permalink
disabled redefines-builtin-id lint rule
Browse files Browse the repository at this point in the history
  • Loading branch information
purnesh42H committed Oct 17, 2024
1 parent 8ca50e0 commit 3e3b3de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/revive.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
[rule.package-comments]
[rule.range]
[rule.receiver-naming]
[rule.redefines-builtin-id]
[rule.superfluous-else]
[rule.time-naming]
[rule.var-naming]
Expand All @@ -27,5 +26,7 @@
[rule.empty-block] # Disabled to allow intentional no-op blocks (e.g., channel draining).
Disabled = true
[rule.import-shadowing] # Disabled to allow intentional reuse of variable names that are the same as package imports.
Disabled = true
[rule.redefines-builtin-id] # Disabled to allow intentional reuse of variable names that are the same as built-in functions.
Disabled = true

0 comments on commit 3e3b3de

Please sign in to comment.