https://github.com/stan-dev/stan
Raw File
Tip revision: 36b4596a7c63837bc72a050c69a59a9ffdb8ecf9 authored by Nicusor Serban on 22 August 2023, 10:05:42 UTC
release/v2.33.0: updating version numbers
Tip revision: 36b4596
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