Joey Armstrong | b085c50 | 2023-01-17 13:56:24 -0500 | [diff] [blame] | 1 | # -*- makefile -*- |
| 2 | # ----------------------------------------------------------------------- |
Joey Armstrong | 9cdee9f | 2024-01-03 04:56:14 -0500 | [diff] [blame] | 3 | # Copyright 2022-2024 Open Networking Foundation (ONF) and the ONF Contributors |
Joey Armstrong | 7f8436c | 2023-07-09 20:23:27 -0400 | [diff] [blame] | 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 | # ----------------------------------------------------------------------- |
| 20 | # https://gerrit.opencord.org/plugins/gitiles/onf-make |
| 21 | # ONF.makefile.version = 1.1 |
Joey Armstrong | b085c50 | 2023-01-17 13:56:24 -0500 | [diff] [blame] | 22 | # ----------------------------------------------------------------------- |
| 23 | |
| 24 | $(if $(DEBUG),$(warning ENTER)) |
| 25 | |
Joey Armstrong | 7f8436c | 2023-07-09 20:23:27 -0400 | [diff] [blame] | 26 | ## ----------------------------------------------------------------------- |
| 27 | ## ----------------------------------------------------------------------- |
Joey Armstrong | b085c50 | 2023-01-17 13:56:24 -0500 | [diff] [blame] | 28 | help :: |
| 29 | @echo |
| 30 | @echo "[LINT]" |
| 31 | |
Joey Armstrong | 7f8436c | 2023-07-09 20:23:27 -0400 | [diff] [blame] | 32 | ## 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 Armstrong | b085c50 | 2023-01-17 13:56:24 -0500 | [diff] [blame] | 38 | |
Joey Armstrong | 7cd92a1 | 2024-05-01 17:47:58 -0400 | [diff] [blame] | 39 | include $(legacy-mk)/lint/groovy.mk |
| 40 | include $(legacy-mk)/lint/jjb.mk |
| 41 | include $(legacy-mk)/lint/json.mk |
| 42 | include $(legacy-mk)/lint/license/include.mk |
| 43 | include $(legacy-mk)/lint/makefile.mk |
| 44 | include $(legacy-mk)/lint/python/include.mk |
| 45 | include $(legacy-mk)/lint/shellcheck/include.mk |
| 46 | include $(legacy-mk)/lint/tox/include.mk |
| 47 | include $(legacy-mk)/lint/yaml/include.mk |
Joey Armstrong | 7f8436c | 2023-07-09 20:23:27 -0400 | [diff] [blame] | 48 | |
Joey Armstrong | 7cd92a1 | 2024-05-01 17:47:58 -0400 | [diff] [blame] | 49 | include $(legacy-mk)/lint/help.mk |
Joey Armstrong | b085c50 | 2023-01-17 13:56:24 -0500 | [diff] [blame] | 50 | |
| 51 | $(if $(DEBUG),$(warning LEAVE)) |
| 52 | |
| 53 | # [EOF] |