diff options
author | 2025-03-04 23:19:10 +0000 | |
---|---|---|
committer | 2025-03-05 10:34:24 -0800 | |
commit | 2b5e15a3075b507c5089f21037ac013529eb4adf (patch) | |
tree | b95e8761fa44e4f6396c39f08ccbb0aed5464ef3 /CPPLINT.cfg | |
parent | 15d4ffe9104a20ff8423ba3c663c00f9ee933cda (diff) |
Remove line length linter in Bluetooth code
Rely on clang format instead to preserve code history on changes that
had clang-format off.
Bug: None
Test: m com.android.bt
Change-Id: Id1232e9740a3b5e10255338e5c73e0c5ce27b595
Diffstat (limited to 'CPPLINT.cfg')
-rw-r--r-- | CPPLINT.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CPPLINT.cfg b/CPPLINT.cfg index d04adc0048..e9f429df17 100644 --- a/CPPLINT.cfg +++ b/CPPLINT.cfg @@ -1,5 +1,4 @@ set noparent -linelength=100 # Do not check access modifier indentation. # CPPLint enforces +1, but our rule is no indentation. filter=-whitespace/indent @@ -38,3 +37,4 @@ filter=-readability/casting # The following checks are either covered by clang-format, # or can produce diagnostics that contradict clang-format. filter=-build/include_order +filter=-whitespace/line_length |