diff options
author | Eliot Horowitz <eliot@10gen.com> | 2014-10-11 00:36:59 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2014-10-11 00:36:59 -0400 |
commit | 666086390440aac3b13f28bac233a58cd4dd968b (patch) | |
tree | ba7411f5bd85f698f2812daeb981e0e87ce0f132 /buildscripts | |
parent | 1a6ceed6c0286d87f35782ce38b6bac3c13045b6 (diff) | |
download | mongo-666086390440aac3b13f28bac233a58cd4dd968b.tar.gz |
SERVER-14352: turn off some lint options for rocks
Diffstat (limited to 'buildscripts')
-rw-r--r-- | buildscripts/lint.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/buildscripts/lint.py b/buildscripts/lint.py index 4ee4f2a626e..5574d7804f9 100644 --- a/buildscripts/lint.py +++ b/buildscripts/lint.py @@ -21,6 +21,7 @@ def run_lint( paths, nudgeOn=False ): nudge.append( '-build/include_order' ) # errors found: 511 nudge.append( '-build/include_what_you_use' ) # errors found: 986 nudge.append( '-build/namespaces' ) # errors found: 131 + nudge.append( '-build/storage_class' ) # conflicts with c++11 auto in rocks never.append( '-readability/braces' ) # errors found: 880 later.append( '-readability/casting' ) # errors found: 748 nudge.append( '-readability/function' ) # errors found: 49 |