Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 1 | # -*- makefile -*- |
| 2 | # ----------------------------------------------------------------------- |
Joey Armstrong | 7ad5c36 | 2023-07-09 19:10:16 -0400 | [diff] [blame] | 3 | # 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 | # ----------------------------------------------------------------------- |
| 20 | # https://gerrit.opencord.org/plugins/gitiles/onf-make |
Joey Armstrong | 825114e | 2023-09-08 15:18:51 -0400 | [diff] [blame^] | 21 | # ONF.makefile.version = 1.2 |
Joey Armstrong | 43997db | 2023-06-04 10:08:58 -0400 | [diff] [blame] | 22 | # ----------------------------------------------------------------------- |
Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 23 | |
| 24 | $(if $(DEBUG),$(warning ENTER)) |
| 25 | |
| 26 | help :: |
| 27 | @echo |
| 28 | @echo "[LINT]" |
| 29 | |
Joey Armstrong | 1e07f88 | 2023-07-08 19:28:49 -0400 | [diff] [blame] | 30 | ## Disable python linting in bulk ? |
| 31 | ifdef NO-LINT-PYTHON |
| 32 | NO-LINT-FLAKE8 := true |
| 33 | NO-LINT-PYLINT := true |
| 34 | endif |
| 35 | |
Joey Armstrong | 825114e | 2023-09-08 15:18:51 -0400 | [diff] [blame^] | 36 | include $(ONF_MAKEDIR)/lint/doc8/include.mk |
| 37 | include $(ONF_MAKEDIR)/lint/groovy/include.mk |
Joey Armstrong | 43997db | 2023-06-04 10:08:58 -0400 | [diff] [blame] | 38 | include $(ONF_MAKEDIR)/lint/jjb.mk |
| 39 | include $(ONF_MAKEDIR)/lint/json.mk |
| 40 | include $(ONF_MAKEDIR)/lint/license/include.mk |
| 41 | include $(ONF_MAKEDIR)/lint/makefile.mk |
Joey Armstrong | 7ad5c36 | 2023-07-09 19:10:16 -0400 | [diff] [blame] | 42 | include $(ONF_MAKEDIR)/lint/python/include.mk |
Joey Armstrong | 43997db | 2023-06-04 10:08:58 -0400 | [diff] [blame] | 43 | include $(ONF_MAKEDIR)/lint/shell.mk |
Joey Armstrong | 1e07f88 | 2023-07-08 19:28:49 -0400 | [diff] [blame] | 44 | include $(ONF_MAKEDIR)/lint/tox/include.mk |
Joey Armstrong | 825114e | 2023-09-08 15:18:51 -0400 | [diff] [blame^] | 45 | include $(ONF_MAKEDIR)/lint/yaml.mk |
Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 46 | |
Joey Armstrong | 43997db | 2023-06-04 10:08:58 -0400 | [diff] [blame] | 47 | include $(ONF_MAKEDIR)/lint/help.mk |
Joey Armstrong | 0205d33 | 2023-04-11 17:29:23 -0400 | [diff] [blame] | 48 | |
| 49 | $(if $(DEBUG),$(warning LEAVE)) |
| 50 | |
| 51 | # [EOF] |