blob: 3c9a062bd713996a2f94d06344112f36d212dd2f [file] [log] [blame]
Joey Armstrong0205d332023-04-11 17:29:23 -04001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstrong7ad5c362023-07-09 19:10:16 -04003# Copyright 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors
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# SPDX-FileCopyrightText: 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors
18# SPDX-License-Identifier: Apache-2.0
19# -----------------------------------------------------------------------
Joey Armstrong0205d332023-04-11 17:29:23 -040020
21$(if $(DEBUG),$(warning ENTER))
22
23help ::
24 @echo
25 @echo "[LINT]"
26
Joey Armstrong1e07f882023-07-08 19:28:49 -040027## Disable python linting in bulk ?
28ifdef NO-LINT-PYTHON
29 NO-LINT-FLAKE8 := true
30 NO-LINT-PYLINT := true
31endif
32
Joey Armstrong825114e2023-09-08 15:18:51 -040033include $(ONF_MAKEDIR)/lint/doc8/include.mk
Joey Armstrong7298cc42023-12-11 17:35:41 -050034include $(ONF_MAKEDIR)/lint/golang/include.mk
Joey Armstrong825114e2023-09-08 15:18:51 -040035include $(ONF_MAKEDIR)/lint/groovy/include.mk
Joey Armstrong43997db2023-06-04 10:08:58 -040036include $(ONF_MAKEDIR)/lint/jjb.mk
37include $(ONF_MAKEDIR)/lint/json.mk
38include $(ONF_MAKEDIR)/lint/license/include.mk
Joey Armstrong216b04b2023-09-29 16:31:19 -040039include $(ONF_MAKEDIR)/lint/make/include.mk
Joey Armstrong7ad5c362023-07-09 19:10:16 -040040include $(ONF_MAKEDIR)/lint/python/include.mk
Joey Armstrongad7bd3f2023-10-02 16:55:59 -040041include $(ONF_MAKEDIR)/lint/shell/include.mk
Joey Armstrongf548adc2023-09-08 15:59:42 -040042include $(ONF_MAKEDIR)/lint/yaml/include.mk
Joey Armstrong0205d332023-04-11 17:29:23 -040043
Joey Armstrong43997db2023-06-04 10:08:58 -040044include $(ONF_MAKEDIR)/lint/help.mk
Joey Armstrong0205d332023-04-11 17:29:23 -040045
46$(if $(DEBUG),$(warning LEAVE))
47
48# [EOF]