-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCPPLINT.cfg
More file actions
28 lines (20 loc) · 707 Bytes
/
CPPLINT.cfg
File metadata and controls
28 lines (20 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# CPPLINT.cfg
# Stop searching for additional config files.
set noparent
# Increase limit line length because 80 it's not enough
linelength=120
# Actually, it's a good requirement, it's better to fix it soon
filter=-build/header_guard
# Ignore requirement to include "foo/bar.h" instead of just "bar.h"
filter=-build/include_subdir
# Ignore requirement to use copyright
filter=-legal/copyright
# Ignore too much complications with spaces
filter=-whitespace/braces
filter=-whitespace/parens
filter=-whitespace/indent
filter=-whitespace/comments
# This this is not C++, C-style cast is the only way to perform cast
filter=-readability/casting
filter=-build/include_what_you_use
filter=-runtime/arrays