https://github.com/stan-dev/stan
Raw File
Tip revision: 67032e910446a84e03cbf80cda85e44f84dcd8e0 authored by Daniel Lee on 08 September 2015, 19:46:05 UTC
Merge pull request #1606 from stan-dev/release/v2.8.0
Tip revision: 67032e9
cpplint
RUN_CPPLINT ?= python $(CPPLINT)/cpplint.py

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