https://github.com/stan-dev/stan
Raw File
Tip revision: acdad0a712df44b9a36018cb43ccb20ab58817ca authored by Daniel Lee on 17 March 2015, 23:04:18 UTC
Merge pull request #1393 from stan-dev/release/v2.6.3
Tip revision: acdad0a
cpplint
CPPLINT ?= cpplint.py

.PHONY: cpplint
cpplint:
	@$(CPPLINT) --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