-
-
Notifications
You must be signed in to change notification settings - Fork 203
Expand file tree
/
Copy pathcpplint
More file actions
6 lines (5 loc) · 818 Bytes
/
cpplint
File metadata and controls
6 lines (5 loc) · 818 Bytes
1
2
3
4
5
6
PYTHON ?= python
.PHONY: cpplint
cpplint:
@$(PYTHON) $(CPPLINT)/cpplint.py --output=vs7 --counting=detailed --root=stan --extension=hpp,cpp --filter=-runtime/indentation_namespace,-build/c++11,-readability/namespace,-legal/copyright,-whitespace/indent,-runtime/reference,-build/header_guard,-build/include_order,-build/include_what_you_use,-runtime/string,-build/namespaces $(shell (find stan -name '*.hpp' -o -name '*.cpp'))
@$(PYTHON) $(CPPLINT)/cpplint.py --output=vs7 --counting=detailed --root=stan --extension=hpp,cpp --filter=-runtime/indentation_namespace,-build/c++11,-readability/namespace,-legal/copyright,-whitespace/indent,-runtime/reference,-build/header_guard,-build/include_order,-build/include_what_you_use,-runtime/string,-build/namespaces $(shell (find test/unit -name '*.hpp' -o -name '*.cpp'))