blob: f21af76f815af7a44cfc712b5d73c02474d30c10 [file] [log] [blame]
Joey Armstrongb085c502023-01-17 13:56:24 -05001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstrong9cdee9f2024-01-03 04:56:14 -05003# Copyright 2022-2024 Open Networking Foundation (ONF) and the ONF Contributors
Joey Armstrong7f8436c2023-07-09 20:23:27 -04004#
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# -----------------------------------------------------------------------
20# https://gerrit.opencord.org/plugins/gitiles/onf-make
21# ONF.makefile.version = 1.1
Joey Armstrongb085c502023-01-17 13:56:24 -050022# -----------------------------------------------------------------------
23
24$(if $(DEBUG),$(warning ENTER))
25
Joey Armstrong7f8436c2023-07-09 20:23:27 -040026## -----------------------------------------------------------------------
27## -----------------------------------------------------------------------
Joey Armstrongb085c502023-01-17 13:56:24 -050028help ::
29 @echo
30 @echo "[LINT]"
31
Joey Armstrong7f8436c2023-07-09 20:23:27 -040032## moved to config.mk
33## Disable python linting in bulk ?
34# ifdef NO-LINT-PYTHON
35# NO-LINT-FLAKE8 := true
36# NO-LINT-PYLINT := true
37# endif
Joey Armstrongb085c502023-01-17 13:56:24 -050038
Joey Armstrong7cd92a12024-05-01 17:47:58 -040039include $(legacy-mk)/lint/groovy.mk
40include $(legacy-mk)/lint/jjb.mk
41include $(legacy-mk)/lint/json.mk
42include $(legacy-mk)/lint/license/include.mk
43include $(legacy-mk)/lint/makefile.mk
44include $(legacy-mk)/lint/python/include.mk
45include $(legacy-mk)/lint/shellcheck/include.mk
46include $(legacy-mk)/lint/tox/include.mk
47include $(legacy-mk)/lint/yaml/include.mk
Joey Armstrong7f8436c2023-07-09 20:23:27 -040048
Joey Armstrong7cd92a12024-05-01 17:47:58 -040049include $(legacy-mk)/lint/help.mk
Joey Armstrongb085c502023-01-17 13:56:24 -050050
51$(if $(DEBUG),$(warning LEAVE))
52
53# [EOF]