blob: db8c14dccd2534730ee3a64e46822c89a9e2b672 [file] [log] [blame]
Joey Armstrongdd334492023-07-09 17:59:02 -04001# -*- makefile -*-
2# -----------------------------------------------------------------------
Joey Armstrongdaa1f0a2024-04-03 18:07:59 -04003# Copyright 2022-2024 Open Networking Foundation (ONF) Contributors
Joey Armstrongdd334492023-07-09 17:59:02 -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.
Joey Armstrongdaa1f0a2024-04-03 18:07:59 -040016# -----------------------------------------------------------------------
17# SPDX-FileCopyrightText: 2024 Open Networking Foundation Contributors
Joey Armstrongdd334492023-07-09 17:59:02 -040018# SPDX-License-Identifier: Apache-2.0
19# -----------------------------------------------------------------------
Joey Armstrongdaa1f0a2024-04-03 18:07:59 -040020
Joey Armstrongdd334492023-07-09 17:59:02 -040021---
22
23yaml-files:
24 - '*.yaml'
25 - '*.yml'
26 - '.yamllint'
27
28rules:
29 document-start: disable
30 line-length:
31 max: 160
32
33# -----------------------------------------------------------------------
Joey Armstrongdaa1f0a2024-04-03 18:07:59 -040034# .. seealso: https://gerrit.opencord.org/plugins/gitiles/
35# helm-repo-tools/+/refs/heads/master/yamllint.conf
Joey Armstrongdd334492023-07-09 17:59:02 -040036# -----------------------------------------------------------------------
37#
38# extends: default
39#
40#rules:
41# empty-lines:
42# max-end: 1
43# line-length:
44# max: 120
45# braces:
46# min-spaces-inside: 0
47# max-spaces-inside: 1
Joey Armstrongdaa1f0a2024-04-03 18:07:59 -040048# -----------------------------------------------------------------------