forked from pulp-platform/Deeploy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.yamllint
More file actions
33 lines (29 loc) · 660 Bytes
/
.yamllint
File metadata and controls
33 lines (29 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# SPDX-FileCopyrightText: 2025 ETH Zurich and University of Bologna
#
# SPDX-License-Identifier: Apache-2.0
---
extends: default
rules:
line-length: disable
indentation:
spaces: 2
indent-sequences: consistent
braces:
forbid: false
min-spaces-inside: 0
max-spaces-inside: 2
comments:
min-spaces-from-content: 1
ignore:
# Ignore all files in third_party
- "**/third_party/"
# Ignore all files in runtime
- "**/runtime/"
# Ignore all files in TEST_*
- "**/TEST_*/"
# Ignore all files in install
- "**/install/"
# Ignore all files in toolchain
- "**/toolchain/"
# Ignore all files in .git
- "**/.git/**"