blob: 005a72c0c1195ed61fcdce69a9ea5db70821fa16 [file] [log] [blame]
Joey Armstrong6b58fd42023-04-12 17:45:53 -04001# -*- makefile -*-
2# -----------------------------------------------------------------------
3# Copyright 2017-2023 Open Networking Foundation
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16# -----------------------------------------------------------------------
17
18$(if $(DEBUG),$(warning ENTER))
19
20# -----------------------------------------------------------------------
21# Intent: Display help banner early before library lint help targets.
22# -----------------------------------------------------------------------
23help::
24 @echo
25 @echo "[LINT]"
26
27## Disable python linting in bulk ?
28ifdef NO-LINT-PYTHON
29 NO-LINT-FLAKE8 := true
30 NO-LINT-PYLINT := true
31endif
32
33# Define early else complaints from makefiles/lint/*/include.mk
34have-golang-files := $(if $(strip $(GOLANG_FILES)),true)
35have-python-files := $(if $(strip $(PYTHON_FILES)),true)
36
37##--------------------##
38##---] INCLUDES [---##
39##--------------------##
40include $(MAKEDIR)/lint/doc8/include.mk
41include $(MAKEDIR)/lint/golang/include.mk
42include $(MAKEDIR)/lint/json.mk
43include $(MAKEDIR)/lint/python/include.mk
44include $(MAKEDIR)/lint/robot.mk
45include $(MAKEDIR)/lint/shell.mk
46include $(MAKEDIR)/lint/yaml.mk
47
48$(if $(DEBUG),$(warning LEAVE))
49
50# [EOF]