Skip to content

Commit

Permalink
fix: disable readability/fn_size by default
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelGSS authored and aduh95 committed Sep 6, 2024
1 parent a3afd5c commit 73f2546
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cpplint.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,10 @@
# flag. By default all errors are on, so only add here categories that should be
# off by default (i.e., categories that must be enabled by the --filter= flags).
# All entries here should start with a '-' or '+', as in the --filter= flag.
_DEFAULT_FILTERS = ['-build/include_alpha']
_DEFAULT_FILTERS = [
'-build/include_alpha',
'-readability/fn_size',
]

# The default list of categories suppressed for C (not C++) files.
_DEFAULT_C_SUPPRESSED_CATEGORIES = [
Expand Down

0 comments on commit 73f2546

Please sign in to comment.