swh:1:snp:d80eec3f654c152adbdd6e641362bcb340d39fe2
Raw File
Tip revision: 4a09d36ec3b2658b5a0d9c1e0634f44b3a0b3076 authored by serban-nicusor-toptal on 21 October 2021, 10:01:51 UTC
release/v2.28.1: updating version numbers
Tip revision: 4a09d36
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