summaryrefslogtreecommitdiff
path: root/buildscripts/cpplint.py
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-4393 Remove cpplint.py and lint.pyMark Benvenuto2019-10-281-6295/+0
|
* SERVER-42165 Replace uses of stdx::mutex with mongo::MutexBen Caimano2019-09-171-0/+8
|
* SERVER-25240 Make `stdx::set_terminate` which works on windows.ADAM David Alan Martin2019-08-231-0/+2
| | | | | The `stdx::set_terminate` primitive, on windows, wraps the per-thread terminate handler and emulates a single global terminate handler.
* SERVER-42666 Fix `cpplint.py` for `shared_lock`ADAM David Alan Martin2019-08-071-1/+1
| | | | Remove superfluous comma.
* SERVER-40542 Remove references to pip2Mathew Robinson2019-04-101-1/+1
|
* SERVER-32295 Support Python 3Mathew Robinson2019-04-081-26/+26
|
* SERVER-37678 Extend cpplint's CheckForCopyright() to check for SSPL.Max Hirschhorn2018-11-051-1/+73
|
* SERVER-32414 Remove some `stdx::` checks from lintADAM David Alan Martin2018-01-111-6/+0
| | | | | | Some checks in lint for `stdx::` polyfills, such as `stdx::make_unique` are entirely out of date. In the interest of removing these stale polyfills, we're relaxing some lint rules.
* SERVER-31629 Support putting unique codes directly into Status constructorsMathias Stearn2017-11-021-0/+7
|
* SERVER-30135 Added a synchronous executor to make the code path between the ↵Henrik Edin2017-09-221-0/+1
| | | | two modes similar while still allowing customization in the execution. Should fix some perf regressions that came with unifying the service state machine.
* SERVER-28530 Prevent SSLThreadInfo destruction construction cycleSpencer Jackson2017-04-101-1/+1
|
* SERVER-16363 Remove all volatile storage types from server source codeMark Benvenuto2016-12-291-0/+8
|
* SERVER-26698 fix lintEric Milkie2016-12-161-1/+0
|
* SERVER-25865 stdx::unordered_multimap and stdx::unordered_multisetDavid Storch2016-09-081-0/+2
|
* SERVER-25865 stdx::unordered_map and stdx::unordered_setDavid Storch2016-09-081-1/+3
| | | | | On Windows, these are aliases for boost containers. On other platforms they are aliases for std containers.
* SERVER-23570 Make SecureAllocator a real allocatorJason Carey2016-04-191-2/+3
| | | | Also adds SecureT, a wrapper proxy for newing objects on the secure heap.
* SERVER-22135 Take python from environment rather system default pathValentin Kuznetsov2016-01-151-1/+1
| | | | | | Signed-off-by: Ramon Fernandez <ramon@mongodb.com> Closes #1056
* SERVER-21097 Add a lint rule to prohibit std::atomic, add NOLINT to existing ↵Andy Schwerin2015-10-231-0/+8
| | | | uses.
* SERVER-19313 Remove some obsoleted usages of boostAndrew Morrow2015-07-091-0/+2
|
* SERVER-19099 Enforce polyfill usage via lintAndrew Morrow2015-06-301-0/+45
|
* SERVER-15618 Turn off "Done" for each file so we can see failures more easilyMatt Kangas2014-10-131-1/+1
| | | | Reapply 317272e after cpplint.py update
* SERVER-15618 Update cpplint.py to latest upstream versionMatt Kangas2014-10-131-718/+3501
| | | | | Update to r137 (Aug 22, 2014). Adds support for C++11. https://code.google.com/p/google-styleguide/source/detail?r=137
* SERVER-9634 typo fixesVeres Lajos2014-06-091-2/+2
| | | | Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
* try turning off "Done" for each file so we can see failures more easilyEliot Horowitz2012-10-161-1/+1
|
* hookup google cpplint, and make "scons lint" run the checks we pass on nowEliot Horowitz2012-10-151-0/+3361
including a few that i made pass