https://github.com/stan-dev/stan
Raw File
Tip revision: f5bfef7c25ec682960de248ab9925347ee936efb authored by Nicusor Serban on 23 January 2024, 12:41:41 UTC
release/v2.34.1: updating version numbers
Tip revision: f5bfef7
cpplint
PYTHON ?= python

.PHONY: cpplint
cpplint:
	@$(PYTHON) $(CPPLINT)/cpplint.py --output=vs7 --counting=detailed --root=src --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 $(call findfiles,src/stan,*.hpp) $(call findfiles,src/stan,*.cpp)
back to top