https://github.com/stan-dev/stan
Raw File
Tip revision: b1e1ec6e7274271545927903a176788696cd0eb2 authored by Daniel Lee on 27 July 2016, 20:17:21 UTC
Merge pull request #1984 from stan-dev/release/v2.11.0
Tip revision: b1e1ec6
cpplint
PYTHON2 ?= python

.PHONY: cpplint
cpplint:
	@$(PYTHON2) $(CPPLINT)/cpplint.py --output=vs7 --counting=detailed --root=src --extension=hpp,cpp --filter=-runtime/indentation_namespace,-readability/namespace,-legal/copyright,-whitespace/indent,-runtime/reference $(shell find src/stan -name '*.hpp' -o -name '*.cpp')
back to top