blob: ca0c7df4ceeae3bfe5d98e768914cf5b84003b3c [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 Armstrong95a52432024-04-29 15:26:18 -040033include $(onf-mk-dir)/lint/doc8/include.mk
34include $(onf-mk-dir)/lint/golang/include.mk
35include $(onf-mk-dir)/lint/groovy/include.mk
36include $(onf-mk-dir)/lint/jjb.mk
37include $(onf-mk-dir)/lint/json.mk
38include $(onf-mk-dir)/lint/license/include.mk
39include $(onf-mk-dir)/lint/make/include.mk
40include $(onf-mk-dir)/lint/python/include.mk
41include $(onf-mk-dir)/lint/shell/include.mk
42include $(onf-mk-dir)/lint/yaml/include.mk
Joey Armstrong0205d332023-04-11 17:29:23 -040043
Joey Armstrong95a52432024-04-29 15:26:18 -040044include $(onf-mk-dir)/lint/help.mk
Joey Armstrong0205d332023-04-11 17:29:23 -040045
46$(if $(DEBUG),$(warning LEAVE))
47
48# [EOF]