https://github.com/stan-dev/stan
Raw File
Tip revision: e2c39bf1597834ed0227fcfcbdcea1f12f7f4558 authored by Nicusor Serban on 02 May 2023, 11:56:28 UTC
release/v2.32.1: updating version numbers
Tip revision: e2c39bf
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