Skip to content

Commit 73f2546

Browse files
RafaelGSSaduh95
authored andcommitted
fix: disable readability/fn_size by default
1 parent a3afd5c commit 73f2546

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

cpplint.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,10 @@
411411
# flag. By default all errors are on, so only add here categories that should be
412412
# off by default (i.e., categories that must be enabled by the --filter= flags).
413413
# All entries here should start with a '-' or '+', as in the --filter= flag.
414-
_DEFAULT_FILTERS = ['-build/include_alpha']
414+
_DEFAULT_FILTERS = [
415+
'-build/include_alpha',
416+
'-readability/fn_size',
417+
]
415418

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

0 commit comments

Comments
 (0)