https://github.com/stan-dev/stan
Raw File
Tip revision: 94dc3a93a2765a212e1793c941408968e0be0a98 authored by Nicusor Serban on 01 July 2022, 13:28:53 UTC
Update release-notes
Tip revision: 94dc3a9
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